python-firebasin
python-firebasin copied to clipboard
Websocket client for Firebase
Hi, I get no connection to my database. I allowed anonymous requests and set security rules to read and write. It works with the `https://publicdata-cryptocurrency.firebaseio.com/bitcoin` I use python 2.7.9 with...
Don't use "print 'foo'" type print statements. This breaks forwards compatibility with Python 2.7/Python 3. ``` diff --git a/firebasin/dataref.py b/firebasin/dataref.py index f94ccec..4a713b5 100644 --- a/firebasin/dataref.py +++ b/firebasin/dataref.py @@ -279,14 +279,14...
The current implementation breaks on Python 3 because of the way the modules are being imported internally. Instead of doing: ``` from firebase import Firebase ``` you should do: ```...
This fixes the problem that Firebase ref creation and send could happen during the handshake phase, which was causing some problems. It's addressed by blocking until the handshake phase is...
I use this lib to publish in real time some data inside a django (1.6) app. Running under the devserver, I get (several of these): ``` Exception in thread Thread-1256:...