Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
This is how the data stored in Firebase
This is the output
This is the code
from firebase import firebase
url = "https://xxxx.firebaseio.com/"
fb = firebase.FirebaseApplication(url,None)
Humidity = fb.get("/Humidity",None)
for key, value in Humidity.items():
print("Humidity :{}".format(value["hum"]))
Try this...
snapshot = ref.order_by_child('/Humidity').get()
for more look at this link
https://firebase.google.com/docs/database/admin/retrieve-data
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Is there any way to use firebase URL shortener(dynamic links) programmatically in Python Django?
There isn't a specific library, but you could call the REST API to generate links: https://firebase.google.com/docs/dynamic-links/rest#using_the_rest_api
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
this is my view
def mydate(request):
date = datetime.datetime.strptime(request.GET.get('date'),"%Y-%m-%d")
return HttpResponse(data)
and i want call this view in another method in the django project
how to deal with this problem ?
yup you can do it
like this
def other_view(request):
item = mydate()
// now do what you need to do
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
What are the parameters to post on a Facebook page with an already uploaded video using Graph API. I have the video id.
may this is useful for you from facebook.
https://developers.facebook.com/docs/graph-api/video-uploads#crosspostedvideos
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I'd like to be able to generate and publish a google form using python code. Is this possible?
Below link will give you an idea:
https://www.reddit.com/r/learnprogramming/comments/32xd4s/how_can_i_use_python_to_submit_a_google_form_or/
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I was create one app which have model and it was created but i facing problem how to edit data in google data store using python or Django. Please Help me.
Fetch the record you want to edit (by key , id or any filter) , modify the field you want to edit and then put() it.