-
I am seeing issues when trying to post the character '…' (or u'…'). When concatenating u'…' to a tweet I see: When concatenating '…' to a tweet I see: I'm using Tweepy 3.3. This used to work with v3.0. Can you please help me? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
try useing "{}".format this solved the issue for me. On 25 March 2015 at 03:45, César de Tassis Filho [email protected]
|
Beta Was this translation helpful? Give feedback.
-
@MechaCoder Sorry, I did not understand. Can you please show me a working Python code example? |
Beta Was this translation helpful? Give feedback.
-
yep sorry so the fix i had was to covert the whole sting into a normal python string using string1 = "more" so the Example would have the output of morestuff and convert both variables are converted to strings from unicode hope this helps ^_^ |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
…
is not an ASCII character. You should use a Unicode encoding like UTF-8 instead.This is an issue with handling encodings (with Python 2) rather than an issue with Tweepy.