Upwork API support to Flask
Project description
Requirements
flask
python-upwork
python-oauth2
Using client
You can use get_access_token method to get the current access token and access token secret, that can be stored in DB and used for access to the client later, if necessary:
if odesk.is_authorized():
access_token, access_token_secret = odesk.get_access_token()
You can use get_client method to get the client:
if odesk.is_authorized():
c = odesk.get_client()
c.team.get_teamrooms()
Or you can use the client even if the current user is not authorized, but you have the access token and access token secret:
if not odesk.is_authorized():
c = odesk.get_client(access_token, access_token_secret)
c.team.get_teamrooms()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Flask-Upwork-1.0-pre1.tar.gz
(4.7 kB
view details)
File details
Details for the file Flask-Upwork-1.0-pre1.tar.gz.
File metadata
- Download URL: Flask-Upwork-1.0-pre1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e56b35cb6f27d4f6d48c09fb443a39847e0e4db5423419bd6ebc2cab880cffae
|
|
| MD5 |
8740c4c8b005ee5e14158dcb9840af7b
|
|
| BLAKE2b-256 |
3ec6ba8a0770ccbd7556108577eb7de58514b311b7a4d41a0b328ccd14bbb993
|