Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

brightforme/python-bright

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-bright

Official Bright API wrapper

Installation

Method with pip: if you have pip installed, just type this in a terminal (sudo is optional on some systems)

pip install python-bright

Method by hand: download the sources, either on PyPI or (if you want the development version) on Github, unzip everything in one folder, open a terminal and type

python setup.py install

Usage

All OAuth2 authorization flows supported by the BRIGHT API are available in python-bright.

Basic Flow

If you only need read-only access to public resources, simply provide a client_id and client_secret:

from bright import Bright
api = Bright(client_id=YOUR_CLIENT_ID,
            client_secret=YOUR_CLIENT_SECRET
)
print(api.get_all_artworks())

User Credentials Flow

from bright import Bright
api = Bright(client_id=YOUR_CLIENT_ID,
            username='john@example.com',
            password='johnpassword'
)
print(api.me())

About

Python lib for Bright API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.