Skip to content

Commit

Permalink
First Instagram script
Browse files Browse the repository at this point in the history
  • Loading branch information
vloothuis committed Sep 13, 2023
1 parent 3a5238a commit c881493
Show file tree
Hide file tree
Showing 12 changed files with 1,152 additions and 215 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

.vscode/
*.pyc
.vscode/

__pycache__

# dependencies
/node_modules
/.pnp
Expand Down
2 changes: 1 addition & 1 deletion dist/framework/processing/py_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@ function loadPackages() {
}
function installPortPackage() {
console.log('[ProcessingWorker] load port package');
return self.pyodide.runPythonAsync("\n import micropip\n await micropip.install(\"./port-0.0.0-py3-none-any.whl\", deps=False)\n import port\n ");
return self.pyodide.runPythonAsync("\n import micropip\n await micropip.install(\"../../port-0.0.0-py3-none-any.whl\", deps=False)\n import port\n ");
}
Binary file modified dist/port-0.0.0-py3-none-any.whl
Binary file not shown.
Binary file modified public/port-0.0.0-py3-none-any.whl
Binary file not shown.
Binary file modified src/framework/processing/py/dist/port-0.0.0-py3-none-any.whl
Binary file not shown.
213 changes: 193 additions & 20 deletions src/framework/processing/py/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions src/framework/processing/py/port/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from port.main import start

__all__ = [
"start"
]
__all__ = ["start"]
Loading

0 comments on commit c881493

Please sign in to comment.