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-0.4.1.1.tar.gz
(4.7 kB
view details)
File details
Details for the file Flask-Upwork-0.4.1.1.tar.gz
.
File metadata
- Download URL: Flask-Upwork-0.4.1.1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5de1a268f864869df97e78cd80c897117470b56a0fa25386885debed2d3c39d |
|
MD5 | 3cc161a8b6aece919d2086b11a0748c1 |
|
BLAKE2b-256 | cf1b78063b662a495e5badd19d5b1b1e42544388fdb4c6484bbc94d106d39510 |