Yuri Prezument
Yuri Prezument
Tweepy exceptions have a `response` attribute that holds the original response from twitter. Maybe it'll help. If you do something like: ``` try: retweet() except Exception as e: if e.response:...
Thanks, I'll take a look and post my findings here...
Ended up with adding a method to my credentials model (Django in my case): ``` python def to_authomatic_credentials(self): """ Returns authomatic.core.Credentials object, from the stored tokens. """ return Credentials( config.CONFIG,...
Noticed I missed the consumer_key/secret part, but they're already being set in refresh_credentials (https://github.com/peterhudec/authomatic/blob/master/authomatic/providers/oauth2.py#L236) Maybe it's a good idea to add a case for it in `Credentials.__init__()`, or in a...
Something like this perhaps? (6022d63)
It looks like twitter itself links "あ@username", but not "a@username"... The twitter-text conformance tests also show this: https://github.com/twitter/twitter-text/blob/master/conformance/autolink.yml#L29
@ozgur any chance for a merge if this is rebased against master?
Looks like you're using Python 3.4 which Goose currently doesn't support, as far as I know...
The page is a list of links, I don't think goose is the right tool for this...