Ok, I use the angularFire-seed repository to check how I will connect the angularjs + firebase + python-firebase library.
My goal is to add material to firebase from python scripts and show it on a web page.
this is the controller:
...... angular.module('myApp.controllers', []) .controller('MyCtrl1', ['$scope', 'FBURL', 'angularFire', function($scope, FBURL, angularFire) { angularFire(FBURL+'/syncedValue', $scope, 'syncedValue', ''); }]) ......
this is a view:
...... <h4>{{syncedValue}}</h4> <input ng-model="syncedValue" type="text" /> ......
Everything is working fine:


It works! When I inject material into a web page, it appears in the firebase debugger.
Now I do this in python:
from firebase import Firebase f = Firebase("https://xxxxx.firebaseio.com/syncedValue") r = f.update({"syncedValue": "3433"})
This makes the child element syncedValue:

r = f.push({"syncedValue": "3433"})
This makes the child with uid:

But I want to just simply update the value of the syncedValue key without adding any child, for example ...

Shed something in angularjs, I don't understand.