Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 932 Bytes

README.md

File metadata and controls

45 lines (26 loc) · 932 Bytes

Pybun

The bun toolkit, packaged for Python 🍞 + 🐍 = 🚀

Bun is an all-in-one toolkit for JavaScript and TypeScript apps.

The pybun Python package redistributes the Bun executable so that it can be used as a dependency in your Python projects.

Usage

Command line

pybun --version

Run library module as a script

python -m pybun --version

From python

import sys, subprocess

subprocess.call([sys.executable, "-m", "pybun"])

License

Pybun itself is released under The Unlicense license.

The bun executable has its own licence.

Credits

Thanks a lot to the zig-pypi maintainers: their code heavily helped me to understand how to do the same with Bun!