An extendable file generator
Project description
geny
An extendable file generator
Installation
Install via pip:
pip install geny
After installation, the CLI will expose the binary with the name:
geny
Extending the CLI
Currently, there are two main ways of extending the functionality of the CLI:
- Adding your own commands/plugins
- Overriding the provided resource templates
Including your own commands
If you would like to extend the functionality of this CLI, you can include your own plugins/commands
by
setting an environment variable: GENY_PLUGINS
. Simply set this variable to the path where your plugins are.
Plugin commands are auto-discovered if they are placed under the plugins directory, but please be sure to do the following for this to work:
- Name your package and click command the same. That is, a package called
get
, for example, should define aget
command. - Place the command definition within the package's
main.py
module. For example:
# get/main.py
import click
@click.command()
@click.pass_context
def get(ctx):
pass
- Sub-commands should be added to the top-most command group in the package's
main.py
module.
# get/main.py
import click
@click.group() # <- group
@click.pass_context
def get(ctx):
pass
@click.command()
@click.pass_context
def foo(ctx):
pass
get.add_command(foo)
- Access your commands via your top-most command group.
geny get foo
NOTE: If you would like to skip a plugin/command from being auto-discovered, simply rename the package by either
prepending or appending any number of underscores (_
). Any code contained within the package will be ignored.
Overriding the templates
The flag --templates-dir
can be used to configure an additional path wherein the CLI can look for resource templates.
Alternatively, you can use the environment variable GENY_TEMPLATES_DIR
for the same purpose.
Development
Install from source:
git clone https://github.com/oleoneto/geny.git
cd geny
pip install --editable .
Dependencies
Check out pyproject.toml for all installation dependencies.
To Do
Pull requests
Found a bug? See a typo? Have an idea for new command? Feel free to submit a pull request with your contributions. They are much welcome and appreciated.
LICENSE
geny is BSD Licensed.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file geny-0.1.3.tar.gz
.
File metadata
- Download URL: geny-0.1.3.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ecf1209bb8acb4ccad5a38da13b347b4081ee845a071da188893ff1e57e787a |
|
MD5 | e892c02041b3b2c1c29de79de4343143 |
|
BLAKE2b-256 | 376ab19f89383e7d8508b134ef55507584d3edaff9340c99abecb05ab92f7731 |
File details
Details for the file geny-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: geny-0.1.3-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa4964e3d08bc152d2ef5dd14848e857d21328edd20c5cb1de8921393915847a |
|
MD5 | 6a665ea6cbad5b2e7e8b1d786e172ae9 |
|
BLAKE2b-256 | 72de4570297e48fc76179b359b49d5d7d82fc959c68065efc86de5158ada511b |