PyMiniRacer
PyMiniRacer copied to clipboard
PyMiniRacer is a V8 bridge in Python.
TAT, hard to clone the depot_tools repo. too slow~
### Steps to reproduce test.py: ```python from py_mini_racer import MiniRacer mr = MiniRacer() ``` run `pyinstaller test.py` then generated test.exe, it happens that: ``` Traceback (most recent call last): File...
While using PyMiniRacer, I found it would be amazing if we could debug JavaScript code through Chrome DevTools. As a Python developer (not familiar with C++), I've tried to implement...
### Steps to reproduce I have this line of code in my JavaScript " return new Uint8Array(atob(tsv).split("").map(n => n.charCodeAt(0))) "causing an error async def get_xcvi(): ctx = MiniRacer() ctx.eval(js_code) promise...
### Steps to reproduce 1. Add `mini-racer` 0.7.0 to the `pyproject.toml` file of a project 2. Run `poetry install -v` ### Expected behavior `mini-racer` is installed successfully. ### Actual behavior...
### Steps to reproduce from py_mini_racer import MiniRacer racer = MiniRacer() result = racer.eval("btoa") print(result) result = racer.eval("btoa") print(result) result = racer.eval("TextEncoder ") print(result) ### Expected behavior I hope the...
My Raspberry Pi system is running 32-bit Bullseye, and I'm unable to install this package on it.
I want to debug when python executes js code. I checked some documents of V8, but I am not familiar with C++ and cannot implement this function myself. So, I...
### Steps to reproduce Note that other x86_64 linux distro does not have this problem, seems to only affect Arch Linux. Note that [py-mini-racer](https://pypi.org/project/py-mini-racer/) does not crash, but your fork...