rpweibo 0.2.2

Creator: bradpython12

Last updated:

0 purchases

TODO
Add to Cart

Description:

rpweibo 0.2.2

rpweibo=======cURL + Python Weibo Wrapper.## Installing```bashsudo python3 setup.py install```## Usage### Initialize```pythonimport rpweiboexample_app = rpweibo.Application(APP_KEY, APP_SECRET, REDIRECT_URI)weibo = rpweibo.Weibo(example_app)```### Authorize#### with Username and Password```pythonauthenticator = rpweibo.UserPassAutheticator(USERNAME, PASSWORD)try: weibo.auth(authenticator)except rpweibo.AuthorizeFailed: print("Invalid username or password!")```#### with Existing Access Token```pythonauthenticator = rpweibo.AccessTokenAuthenticator(ACCESS_TOKEN)weibo.auth(authenticator)```### Using API#### Styles##### Procedural Style```pythontweets = weibo.get("statuses/user_timeline")["statuses"]for tweet in tweets: print(tweet["text"])weibo.post("statuses/update", status="Hello, world!")```##### Object Style```pythontweets = weibo.api("statuses/user_timeline").get().statusesfor tweet in tweets: print(tweet.text)weibo.api("statuses/update").post(status="Hello, world!")```### Error Handling```pythontry: tweets = weibo.api("statuses/user_timeline").get().statusesexcept rpweibo.RemoteError: # handle API errors likely cause by remote server print("Something wrong with the server")except rpweibo.CallerError: # handle API errors likely cause by the client print("You shouldn't use the API in this way")except rpweibo.ResultCorrupted: print("Request the API successfully, but got the corrupted result")except rpweibo.NetworkError: print("Somethings wrong with your network")except rpweibo.APIError as e: # Handle all API errors, including RemoteError and CallerError. # NOTE: we handle both two type of API errors already, never reach here print("%d - %s" % (e.error_code, e.error_message))```

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.