Python SDK for Weibo API
Project description
PyWeibo
Python SDK for Weibo API.
Installation
pip install pyweibo
Preparation
-
Register the Sina Weibo account, and establish a new app in open.weibo.com.
-
Get
App KeyandApp Secretfrom 应用信息 -> 基本信息 -
Set
Redirect URIin 应用信息 -> 高级信息 -> OAuth2.0授权设置 as:
Usage
Authentication
Basic usage
from pyweibo import Auth
auth = Auth()
When running, you need to manually input App Key and App Token:
App Key: <Your App Key>
App Secret: <Your App Secret>
Next the web browser will automatically open the redirect uri.
Copy the uri to the console, and the token will be generated:
Input the url or the token: <The URL or token>
Finally, the token will also be stored in ./token.json.
As for advanced usages, you can specify:
-
The way to read app key and secret from the local file:
LocalFileReader('./app.json') -
The redirect uri, default is https://api.weibo.com/oauth2/default.html
API Client
Basic usage
from pyweibo import Auth, Client
# Get the token
auth = Auth()
token = auth.token.token
# Start the client
client = Client()
data = client.statuses.home_timeline.get(access_token=token)
-
The APIs and their parameters can be referred from official docs.
-
You can access the api call like class attributes, where the last method call must be
getorpost.
client.api_name_1.api_name_2.get(param1=value1, param2=value2)
- Also you can use dict index like:
client[api_name_1][api_name_2].get(param1=value1, param2=value2)
- The return value is a
TextDict, where you can access the attributes directly like:
user = data.statuses[0].user
- Also you can upload the picture with the parameter
pic:
with open('image.png', 'rb') as f:
client.statuses.upload_pic.post(pic=f)
- For api like
2/statuses/uploadof which the url is https://upload.api.weibo.com/2/statuses/upload.json, useUploadClientinstead ofClient:
from pyweibo import UploadClient
client = UploadClient()
with open('image.png', 'rb') as f:
client.statuses.upload.post(status='Image', pic=f)
Contribute
Project:Thesharing/pyweibo
Establish new issue if there is any question or advice.
Reference
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyweibo-0.1.2.tar.gz.
File metadata
- Download URL: pyweibo-0.1.2.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1728dbb71ec76839471e560c8711aa91d6ac3dfc807bbe31003610ee267aff91
|
|
| MD5 |
45f07980a893ceab8f3480ba48d73612
|
|
| BLAKE2b-256 |
8d77dae01e581fcd716c0f67a61b690358e988b163192a65a1e12186dad992d2
|
File details
Details for the file pyweibo-0.1.2-py2.py3-none-any.whl.
File metadata
- Download URL: pyweibo-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c42ed46cc946a84b7aff8bcf3581364c57d632ab3fbe55e43a8b1e6ee6d5e77a
|
|
| MD5 |
0c61053e95e77320836bf0c06c0f43a5
|
|
| BLAKE2b-256 |
fa7cec5aa4c7e0ec7761f6270643856f1f5bb3a3175bbb1b9a4534828ec04a3c
|