Mike Helmick
Mike Helmick
Hm, I can't get around to trying the suggestions for a bit, but they look usable. Maybe providing a json file in the `with:` for key `other_env_vars` or something and...
Okay, so as I wrote that, I kind of see that we'd prob want the task def to be separate for each, i.e.: taskdefs |_staging.json |_production.json |_other.json and in the...
You're sending too many requests from the same IP address, causing api.twitter.com to refuse the connection. There really isn't much you can do except try in a few minutes after...
@bitnumus didn't mean to close this, sorry! And I don't see you making too many requests. Is the error still occurring? I could be twitter acting up? I just tested...
You can use `get_application_rate_limit_status` to get your applications current rate limit status. You can also `except` on `TwythonRateLimitError` or access the rate limiting header (https://github.com/ryanmcgrath/twython/blob/c9026247ee03bc8b22750a87ecf6425094ca77ee/docs/usage/advanced_usage.rst#access-headers-of-previous-call)
Hi, You should be able to just authenticate with OAuth 1 or 2 and then call get: ```python t = Twython(...) t.get('search//') ``` Hope this helps!
Hi, I've noticed this behavior too and would like to avoid doing a cron to `nginx -s reload` @sergey-dryabzhinsky I'm not sure how often you contribute to this repository anymore,...
@anentropic that sounds wonderful. I'd be open to a PR that changes error_code to the Twitter error_code and a new status_code attribute on `TwythonError`
Hi @scottpham, thanks for pointing this out. The docs point to their old documentation. Feel free to open up a pull request replacing all the references to dev.twitter.com
Looks like you can upload media or a video and then attach that media ID to the DM ```python from twython import Twython twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) #...