Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pingf/postboy
Simple & Fast Http client based on pycurl
https://github.com/pingf/postboy
Last synced: 3 days ago
JSON representation
Simple & Fast Http client based on pycurl
- Host: GitHub
- URL: https://github.com/pingf/postboy
- Owner: pingf
- License: mit
- Created: 2015-11-27T17:16:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-14T07:18:34.000Z (almost 9 years ago)
- Last Synced: 2023-03-25T20:57:36.770Z (over 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Postboy
Simple but Fast Http client based on pycurl## Usage
this package is developed with python3, because the name 'postboy' is occupied by others, you have to import `postboy2````python
# coding=utf-8
from postboy2 import PostBoyif __name__ == '__main__':
result = PostBoy('www.douban.com','utf-8').get()
print(result['data']['title'])
```##Change Log
v0.0.3 : add simple post support
v0.0.2 : reformat the result output
v0.0.1 : add get support