python-tent-client icon indicating copy to clipboard operation
python-tent-client copied to clipboard

A python library for building Tent apps and talking to Tent servers.

Results 19 python-tent-client issues
Sort by recently updated
recently updated
newest added

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...

eventually
quick

We should be able to set how many times to retry a failed connection and how long we should wait before timing out.

eventually

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...

eventually
quick

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

eventually

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...

eventually

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']...

eventually

Instead right now I'm just clumsily searching through the HTML for "

eventually
quick

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...

eventually

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.

eventually