-
I need to read IndexedDB data from inside a brython webworker which will have data written to it by javascript. Would this be possible in brython? I noticed there is an indexed_db.py module but haven'…
-
Hi,
If I try to call `inspect.getfullargspec` on a builtin method Brython returns a _**TypeError('unsupported callable')**_. However, with custom funtions, inspect.getfullargspec, works fine.
Se…
-
I was wondering if there is a way to achieve what is possible with SharedArrayBuffer in Brython? I need a Brython webworker to be able to access the same memory as the main thread. Thank you.
-
On the page
https://brython.info/static_doc/en/intro.html
there is the simple example:
```
from browser import document
from browser.widgets.dialog import InfoDialog
def click…
-
The docs at https://brython.info/static_doc/en/jsobjects.html say that a javascript null value will map to None in python code but that does not appear to be the case on the 3.9.0 release:
```
…
-
Is there a way I can use brython as a repl, like I can with python ?
This would be handy for all the usual stuff you do in a repl, but also it would be very quick to check how `brython` behaves vs…
-
My first brython project is functionally correct, but each start would take a slow 8 to 10 seconds from page load to my app functioning. Shrinking the app source code during troubleshooting, eventuall…
-
```python
>>> shukujitsu.data.load_bin()
Traceback (most recent call last):
File VFS.shukujitsu.asof20201127/__init__.py, line 5, in
TXT=BIN.decode("cp932")
AttributeError: decode
```
-
I just tried creating a brython package for a module I intend to use, but even with a minimal module (empty `test/__init__.py`) I get:
```
Traceback (most recent call last):
File "/home/p10/.loca…
-
I derived the example below from code that worked in CPython and older Brython versions. Unfortunately it doesn't work with the latest development snapshot.
```python
I…