-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error while using api.update_status('hello') #659
Comments
I believe this is a bug in requests, a library tweepy relies on. I had the same issue and solved it by downgrading to requests 2.7.0:
|
I'm having a similar issue: Downgrading |
I'm very new to tweepy but api.update_status("A test from the tweepy API") works fine here with requests 2.9.1 with Python 2.7.11 32-bit on Windows 8.1 Pro 64-bit. My packages are: PySide 1.2.4 has no metadata |
Downgrading the module "requests" 2.7 did for me, thank you |
Getting this error while running api.update_status('hello')
Library is imported perfectly and all keys are verified to be truely entered.
Error:
Traceback (most recent call last):
File "runme.py", line 12, in
api.update_status('tweepy + oauth!')
File "/usr/local/lib/python2.7/dist-packages/tweepy/api.py", line 193, in update_status
)(post_data=post_data, _args, *_kwargs)
File "/usr/local/lib/python2.7/dist-packages/tweepy/binder.py", line 243, in _call
return method.execute()
File "/usr/local/lib/python2.7/dist-packages/tweepy/binder.py", line 189, in execute
raise TweepError('Failed to send request: %s' % e)
tweepy.error.TweepError: Failed to send request: cannot make memory view because object does not have the buffer interface
The text was updated successfully, but these errors were encountered: