UNKNOWN
Project description
GlobeLabs API Python Client
===========================
Installation
------------
```
$ pip install globelabs
```
Usage
-----
Sample usage with flask.
```
from globelabs import Globe
app_id = "BGyKAhGbyoGhRdiA8kTyMXhR9yGEhzoa"
app_secret = "8ed742b6c27e38db323ab24e19460a38eb0bf52804fc08f4df897db206b7b690"
shortcode = "1027"
globe = Globe(app_id=self.app_id,
app_secret=self.app_secret,
shortcode=self.shortcode)
@app.route('/login')
def login():
return redirect(globe.get_auth_url())
@app.route('/redirect_callback')
def redirect_callback():
r = globe.get_access_token(request.args.get('code'))
ac = r['access_token']
subscriber_number = r['subscriber_number']
return redirect(url_for('.home'))
@app.route('/charge')
def charge():
globe.charge(0, "2158%s0000099" % self.shortcode)
```
TODO
----
* Need help with documentation! :D
===========================
Installation
------------
```
$ pip install globelabs
```
Usage
-----
Sample usage with flask.
```
from globelabs import Globe
app_id = "BGyKAhGbyoGhRdiA8kTyMXhR9yGEhzoa"
app_secret = "8ed742b6c27e38db323ab24e19460a38eb0bf52804fc08f4df897db206b7b690"
shortcode = "1027"
globe = Globe(app_id=self.app_id,
app_secret=self.app_secret,
shortcode=self.shortcode)
@app.route('/login')
def login():
return redirect(globe.get_auth_url())
@app.route('/redirect_callback')
def redirect_callback():
r = globe.get_access_token(request.args.get('code'))
ac = r['access_token']
subscriber_number = r['subscriber_number']
return redirect(url_for('.home'))
@app.route('/charge')
def charge():
globe.charge(0, "2158%s0000099" % self.shortcode)
```
TODO
----
* Need help with documentation! :D
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
globelabs-0.0.3.tar.gz
(2.1 kB
view details)
File details
Details for the file globelabs-0.0.3.tar.gz
.
File metadata
- Download URL: globelabs-0.0.3.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5466c4b3214ab313a24e371751c7fe8b72e862be59a7408708c8c76e07c01394 |
|
MD5 | 08d2a03959892d03a830d1e8eca858f6 |
|
BLAKE2b-256 | b491a3480ef0f4c6feecfe2dbc9bc8092c81adaf774f79cd06bfe4d168fe1e58 |