https://github.com/stenbror/python_core_rust_native
https://github.com/stenbror/python_core_rust_native
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/stenbror/python_core_rust_native
- Owner: stenbror
- License: gpl-3.0
- Created: 2023-03-04T20:00:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T21:21:38.000Z (over 3 years ago)
- Last Synced: 2025-07-09T13:06:13.593Z (12 months ago)
- Language: Rust
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python_core_rust_native
This project is to research parser and tokenizer for Python 3.11 or later written in rust with all needed unittests to support it.
Sometime in the future i might extend it to a fully python interpreter for embedded use and on several operating systems on PC and Mac,
### Building local on your machine
- git clone https://github.com/stenbror/python_core_rust_native
- cargo build
- cargo test
### Build and test with docker environment
- docker build -t python_core_rust_native .
- docker run -it --rm --name build_and_test python_core_rust_native
- cargo build
- cargo test