This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from app.config import TWITTER_APP_KEY, TWITTER_APP_SECRET | |
twitter_oauth = oauth.remote_app( | |
'twitter', | |
consumer_key=TWITTER_APP_KEY, | |
consumer_secret=TWITTER_APP_SECRET, | |
base_url='https://api.twitter.com/1.1/', | |
request_token_url='https://api.twitter.com/oauth/request_token', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://stackoverflow.com/q/10236953/1333025 | |
I quite enjoyed this exercise. I tried to do it without looking at the answers, | |
and it was worth it. It took me considerable time, but the result is | |
surprisingly close to two of the other answers, as well as to | |
[monad-coroutine](http://hackage.haskell.org/package/monad-coroutine) library. | |
So I guess this is somewhat natural solution to this problem. Without this | |
exercise, I wouldn't understand how _monad-coroutine_ really works. | |
To add some additional value, I'll explain the steps that eventually led me to |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Example on using Kqueue/Kevent on BSD/Mac | |
using Python. | |
The TCP server essentially echoes back the | |
message it receives on the client socket. | |
""" | |
__author__ = "Ishwor Gurung <[email protected]>" |