We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import play_scraper print play_scraper.details('com.android.chrome')
File "<ipython-input-8-60b6c1359646>", line 2 print play_scraper.details('com.android.chrome') ^ SyntaxError: invalid syntax
Running on Mac OS with python: 3.6.5 |Anaconda, Inc.| (default, Apr 26 2018, 08:42:37) [GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)]
The text was updated successfully, but these errors were encountered:
Looks like you're running Python 3, where print is a function. You'll need to do print(play_scraper.details('com.android.chrome')).
print
print(play_scraper.details('com.android.chrome'))
I'll update the readme and examples to be Python version agnostic.
Let me know if you run into any more issues!
Sorry, something went wrong.
Thank you very very much!
No branches or pull requests
Running on Mac OS with python:
3.6.5 |Anaconda, Inc.| (default, Apr 26 2018, 08:42:37)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)]
The text was updated successfully, but these errors were encountered: