You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 8, 2020. It is now read-only.
With Python 3.7 there is an issue with invalid escape characters (see error message below).
from pyppeteer.us_keyboard_layout import keyDefinitions
E File "/Users/xxxxx/.virtualenvs/xxxxxx/lib/python3.7/site-packages/pyppeteer/us_keyboard_layout.py", line 73
E 'Digit9': {'keyCode': 57, 'code': 'Digit9', 'shiftKey': '(', 'key': '9'},
E ^
E SyntaxError: invalid escape sequence (
Current work around is making a raw string.
The text was updated successfully, but these errors were encountered:
Hi @steven-81, it looks like this project has been abandoned. You may want to consider the active fork pyppeteer2. Feel free to create an issue there if your problem persists with the updated libary.
I know for a fact that us_keyboard_definitions.py has been updated in the fork, no idea when the update will land on PyPi though, and no idea if this issue has been fixed, I will take a look into it.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
With Python 3.7 there is an issue with invalid escape characters (see error message below).
from pyppeteer.us_keyboard_layout import keyDefinitions
E File "/Users/xxxxx/.virtualenvs/xxxxxx/lib/python3.7/site-packages/pyppeteer/us_keyboard_layout.py", line 73
E 'Digit9': {'keyCode': 57, 'code': 'Digit9', 'shiftKey': '(', 'key': '9'},
E ^
E SyntaxError: invalid escape sequence (
Current work around is making a raw string.
The text was updated successfully, but these errors were encountered: