Skip to content

Commit f30a11b

Browse files
committed
initial commit
1 parent 753cea3 commit f30a11b

23 files changed

Lines changed: 4104 additions & 2 deletions

.babelrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"presets": [
3+
"@babel/preset-env"
4+
],
5+
"env": {
6+
"test": {
7+
"presets": [
8+
"@babel/env"
9+
]
10+
}
11+
},
12+
"compact": false
13+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# acode-plugin-python_runner
2-
Acode plugin to run python code
1+
# acode-plugin-python
2+
3+
Plugin to run python code in [Acode](https://acode.foxdebug.com) editor for android. This plugin uses [Pyodide](https://pyodide.org) project to run python in browser.

dist/lib/distutils.tar

960 KB
Binary file not shown.

dist/lib/index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<script src="pyscript.js"></script>
8+
<link rel="stylesheet" href="pyscript.css">
9+
<title>Python Runner</title>
10+
</head>
11+
<body>
12+
13+
</body>
14+
</html>
15.7 KB
Binary file not shown.

dist/lib/packages.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.
39.8 KB
Binary file not shown.

dist/lib/pyodide.asm.data

5.14 MB
Binary file not shown.

dist/lib/pyodide.asm.js

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)