API¶
Twitter wall module.
-
class
twitterbymb.twitwall.TwitterWall(numOfTweet, hashtag, switch)¶ Class that will create all connection to twitter regarding to hashtag and print him
Requests HTTP library¶
Requests is an HTTP library, written in Python, for human beings. Basic GET usage:
>>> import requests
>>> r = requests.get('https://www.python.org')
>>> r.status_code
200
>>> 'Python is a programming language' in r.content
True
... or POST:
>>> payload = dict(key1='value1', key2='value2')
>>> r = requests.post('http://httpbin.org/post', data=payload)
>>> print(r.text)
{
...
"form": {
"key2": "value2",
"key1": "value1"
},
...
}
The other HTTP methods are supported - see requests.api. Full documentation is at <http://python-requests.org>.
| copyright: |
|
|---|---|
| license: | Apache 2.0, see LICENSE for more details. |
flask¶
A microframework based on Werkzeug. It’s extensively documented and follows best practice patterns.
| copyright: |
|
|---|---|
| license: | BSD, see LICENSE for more details. |