Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyodide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
pyodide
Commits
e83894de
Commit
e83894de
authored
Dec 26, 2018
by
Michael Droettboom
Committed by
GitHub
Dec 26, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #282 from mdboom/globals-proxy
Add a proxy to get global objects from Python
parents
534bfbaf
2d473282
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
2 deletions
+23
-2
docs/api_reference.md
docs/api_reference.md
+9
-2
src/pyodide.js
src/pyodide.js
+3
-0
test/test_python.py
test/test_python.py
+11
-0
No files found.
docs/api_reference.md
View file @
e83894de
...
...
@@ -98,6 +98,14 @@ For example, to access the `foo` Python object from Javascript:
| | | types, a Proxy object to the Python |
| | | object is returned. |
### pyodide.globals
An object whose attributes are members of the Python global namespace. This is a
more convenient alternative to
`pyodide.pyimport`
.
For example, to access the
`foo`
Python object from Javascript:
`pyodide.globals.foo`
### pyodide.repr(obj)
...
...
@@ -178,7 +186,7 @@ pyodide.runPythonAsync(code, messageCallback)
Returns the pyodide version.
It can be either the exact release version (e.g.
`0.1.0`
), or
It can be either the exact release version (e.g.
`0.1.0`
), or
the latest release version followed by the number of commits since, and
the git hash of the current commit (e.g.
`0.1.0-1-bd84646`
).
...
...
@@ -191,4 +199,3 @@ None
| name | type | description |
|-----------|--------|------------------------|
|
*version*
| String | Pyodide version string |
src/pyodide.js
View file @
e83894de
...
...
@@ -233,6 +233,7 @@ var languagePluginLoader = new Promise((resolve, reject) => {
////////////////////////////////////////////////////////////
// Rearrange namespace for public API
let
PUBLIC_API
=
[
'
globals
'
,
'
loadPackage
'
,
'
loadedPackages
'
,
'
pyimport
'
,
...
...
@@ -277,6 +278,8 @@ var languagePluginLoader = new Promise((resolve, reject) => {
.
then
((
response
)
=>
response
.
json
())
.
then
((
json
)
=>
{
fixRecursionLimit
(
window
.
pyodide
);
window
.
pyodide
.
globals
=
window
.
pyodide
.
runPython
(
'
import sys
\n
sys.modules["__main__"]
'
);
window
.
pyodide
=
makePublicAPI
(
window
.
pyodide
,
PUBLIC_API
);
window
.
pyodide
.
_module
.
packages
=
json
;
resolve
();
...
...
test/test_python.py
View file @
e83894de
...
...
@@ -599,3 +599,14 @@ def test_runpythonasync_exception_after_import(selenium_standalone):
assert
"ZeroDivisionError"
in
str
(
e
)
else
:
assert
False
def
test_py
(
selenium_standalone
):
selenium_standalone
.
run
(
"""
def func():
return 42
"""
)
assert
selenium_standalone
.
run_js
(
'return pyodide.globals.func()'
)
==
42
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment