defaultnamehere / tinder-detective

Find your Facebook friends' Tinder profiles. Don't actually use this by the way that's weird. Not even in a good way.
MIT License
701 stars 60 forks source link

What to do when you get into localhost:5000 ? #23

Closed staticabhi closed 8 years ago

staticabhi commented 8 years ago

What to do when you get into localhost:5000 in your browser how to write "Y"?

yanir3 commented 8 years ago

You press "Y" in the console where you ran the server.

staticabhi commented 8 years ago

I did.. but then got the following error:

_builtins.UnicodeEncodeError UnicodeEncodeError: 'charmap' codec can't encode character '\U0001f608' in position 0: character maps to

Traceback (most recent call last) File "C:\Anaconda3\lib\site-packages\flask\app.py", line 2000, in call return self.wsgi_app(environ, start_response) File "C:\Anaconda3\lib\site-packages\flask\app.py", line 1991, in wsgi_app response = self.make_response(self.handle_exception(e)) File "C:\Anaconda3\lib\site-packages\flask\app.py", line 1567, in handle_exception reraise(exc_type, exc_value, tb) File "C:\Anaconda3\lib\site-packages\flask_compat.py", line 33, in reraise raise value File "C:\Anaconda3\lib\site-packages\flask\app.py", line 1988, in wsgi_app response = self.full_dispatch_request() File "C:\Anaconda3\lib\site-packages\flask\app.py", line 1641, in full_dispatch_request rv = self.handle_user_exception(e) File "C:\Anaconda3\lib\site-packages\flask\app.py", line 1544, in handle_user_exception reraise(exc_type, exc_value, tb) File "C:\Anaconda3\lib\site-packages\flaskcompat.py", line 33, in reraise

yanir3 commented 8 years ago

I see you're running from Windows, I'd generally suggest running from a Linux machine so you'll have a unicode support. You could remove all Unicode emojis from the code or try checking the solution on #11 and see if it helps you.