Overview¶
qwikstart: Code injector for fun and profit¶
- Documentation: https://qwikstart.readthedocs.io
- Source: https://github.com/tonysyu/qwikstart
Install¶
The recommended way of installing qwikstart is to use pipx:
pipx install qwikstart
If you happen to be setting up pipx for the first time, the
pipx installation instructions suggest running pipx ensurepath to update
the user path. Note, if you use ~/.profile instead of ~/.bash_profile,
this will add ~/.bash_profile, which will take precendence over ~/.profile.
Either move the code from ~/.bash_profile to ~/.profile or
link your profiles.
Basic Usage¶
After installing qwikstart, you can run a simple hello-world example using the following:
qwikstart run --repo https://github.com/tonysyu/qwikstart examples/hello_world.yml
By default, there are abbreviations for common git repos, so the above can also be written:
qwikstart run --repo gh:tonysyu/qwikstart examples/hello_world.yml
See Also¶
- hygen: The scalable code generator that saves you time.
- cookiecutter: A command-line utility that creates projects from cookiecutters (project templates)
- pyscaffold: Python project template generator with batteries included.