python-tent-client
python-tent-client copied to clipboard
A python library for building Tent apps and talking to Tent servers.
We have `hasRegistrationKeys()` and `hasPermanentKeys()` which just check if the TentApp object has keys at all. Should have another method which checks if the keys work. Call it `verifyAuthKeys()` For...
We should be able to set how many times to retry a failed connection and how long we should wait before timing out.
You can change your entity URL to any site you own, as long as you've put a `Link` header or `` tag there. People are starting to want to do...
I've only tried this code on Python 2.6.1. Do the dependencies support Python 3? - [requests](http://docs.python-requests.org/en/latest/#): yes! - [macauthlib](https://github.com/mozilla-services/macauthlib): not sure
An entity can have more than one API root URL. The code currently captures all of them but only uses the first one. If a request fails anywhere we should...
Python's `requests` library only gives us the last one when more than one is specified. We can fix that by parsing the Link header ourselves by grabbing it from r.headers['Link']...
Instead right now I'm just clumsily searching through the HTML for "
Assume the user is running python-tent-client from home, behind a firewall. Right now we launch a browser window so the user can approve the app, but because we're not running...
Right now we assume it's hmac-sha-256. If it's not, the auth_hook() function will need to use a different hash function.