I want to use Google Data API on a Symbian device with pys60 but I couldn't find any doc.
Is there any way to install Google Data APIs Python Client Library on Symbian ?
According to the Google Data API protocol documentation, even the client libraries are basically just sending XML data over HTTP, so it should be possible (in theory, at least) to send the same data from your own PyS60 application by grokking the code of the Python client. If memory serves me right, ElementTree is included in Python 2.5, and should by extension, be in PyS60. It's the only required dependency for the Python client library.
Google Data Api is just a bunch of interpreted Python code. It should run in any Python 2.2 interpreter after you download it from the project page. It has a nice tutorial.
Maybe you want to know how to install downloaded Python packages.
Related
I'm currently trying to develop an application to use ms-graph API using python.
I'm trying to use SSO authentication but I cant find any resources or documentation related.
I found this documentation https://learn.microsoft.com/en-us/office/dev/add-ins/develop/sso-in-office-add-ins
but it is only for javascript.
I wrote a script using Flask and another script using O365 python package.
It doesnt seem like its a Single sign on application that I try to achieve...
I'm looking for any documentation that could help.
You are referring to the Office web add-ins where you could also use SSO. But it seems you are developing a standalone application where Graph API is used. In that case you may find the Configure SAML-based single sign-on for your application using the Microsoft Graph API tutorial helpful.
I am new to using APIs and was trying to build a trading bot in python using WazirX exchange's REST API. I am unable to understand how to make API calls using their documentation (Also, is this an example of a good API documentation or of a bad one?). Can anyone point to any python wrapper libraries through which I can execute trades using an API key and secret? I tried searching a lot but couldn't find any Github repository using their API to execute trades (I have seen some using the public endpoints only).
Any help would be appreciated.
Wazirx itself has provided Ruby and Python connectors
There are also 3rd party libraries available which can be used.
https://docs.wazirx.com/#api-third-party-integrations
I am looking at using google cloud python SDKs to manage my resources. I am not able to find compute module in the python SDK.
Python Doc here: https://googlecloudplatform.github.io/google-cloud-python/latest/
However compute module is available in Node.js SDK.
Node.js Doc here: https://googlecloudplatform.github.io/google-cloud-node/#/docs/google-cloud/0.56.0/compute
Can I get information if this module(compute) is available in python?
If not is this being planned and when can I expect it.
The google-cloud-python project you link to is hand-crafted pythonic libraries for GCP APIs. There is not yet one for Compute.
Instead you will have to use the auto-generated Python client library. See https://cloud.google.com/compute/docs/tutorials/python-guide for an example.
I'm building an app that needs to get artwork information out of the libspotify Spotify API.
I'm building the app in python on google appengine. Does anyone know of a package that will enable me to access the libspotify API? The official page is C and I've googled around to try and find a suitable wrapper but can't seem to find one.
Thanks
Tom
There is also https://github.com/mopidy/pyspotify which is actively used in some applications and up to date.
I don't think you will be able to call libspotify at all. From the docs:
"The Python interpreter runs in a secured "sandbox" environment to isolate your application for service and security. The interpreter can run any Python code, including Python modules you include with your application, as well as the Python standard library. The interpreter cannot load Python modules with C code; it is a "pure" Python environment."
Check Spotimeta
http://pypi.python.org/pypi/spotimeta/
I am building an GPS tracker application in Python. How can I use Google Maps in my application?
Google maps is a client-side web application, meaning it can only run in a web browser. You will have to use a web server with your python application (using mod_wsgi or the like and some type of web library like tornado or cherrypy). The web server will serve HTML and javascript files which may make use of Google Maps.
I don't see why you'd need a web server. There are various network APIs to google-maps including this one http://code.google.com/apis/maps/documentation/webservices/index.html, and python can access those APIs using urllib and/or httplib
Try googling "python google map" - it seems there are some python packages already out there which encapsulate these APIs.
I do know there is a Client Library created for Python.
You can download it with pip install -U googlemaps
More information can be found here: https://github.com/googlemaps/google-maps-services-python
The documentation here: https://googlemaps.github.io/google-maps-services-python/docs/2.4.4/