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-pre2.tar.gz
(4.7 kB
view details)
File details
Details for the file Flask-Upwork-1.0-pre2.tar.gz.
File metadata
- Download URL: Flask-Upwork-1.0-pre2.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb889f7497bbef6aabea0d4d634b01a11c7e132e99f1fe2b0ea9d20c2d6ab5e4
|
|
| MD5 |
4722f0bed3843ab88d2bd15a70f021bd
|
|
| BLAKE2b-256 |
20fadef272a624d4414f978ecb8db3a65b4f4cb92b6b7ab44a6f9bba70b9767e
|