is it possible to access Navigator from Brython ? #2235
Answered
by
PierreQuentel
BobSquarePants
asked this question in
Q&A
-
Is there a way to access the WEB API Navigator from Bryhton ? I've tried few things but none worked :) Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
PierreQuentel
Sep 15, 2023
Replies: 1 comment 1 reply
-
Hi, Yes it's possible, through from browser import window
print(window.navigator.languages) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
BobSquarePants
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Yes it's possible, through
window.navigator
: