https://github.com/vlang/py2v
A Python to V transpiler.
https://github.com/vlang/py2v
python transpiler v
Last synced: 10 months ago
JSON representation
A Python to V transpiler.
- Host: GitHub
- URL: https://github.com/vlang/py2v
- Owner: vlang
- License: mit
- Created: 2020-07-23T11:22:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-27T20:55:18.000Z (over 4 years ago)
- Last Synced: 2025-04-13T20:14:36.839Z (10 months ago)
- Topics: python, transpiler, v
- Language: V
- Homepage:
- Size: 46.9 KB
- Stars: 66
- Watchers: 12
- Forks: 15
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# py2v
py2v is a Python to V source transpiler written (mostly) in V. py2v aims not to have a bug-to-bug 100% accurate transpilation but to create a baseline to ease re-making Python projects in V.
Please see the [examples folder](/examples/) to see the least py2v can do.
## Installation
Dependencies:
- [V](https://github.com/vlang/v)
- Python 3.6+
```bash
git clone https://github.com/vlang/py2v.git
cd py2v
-prod py2v.v -o py2v
```
## Usage
```
./py2v
```
## Contributing
PRs are welcome. Please prefix your PR titles with the component you are editing. (`docs: improve README.md` etc.)
## License
[MIT License](/LICENSE)