fenn pull Command¶
The fenn pull command allows you to download and use pre-made templates from the fenn templates repository for your analysis projects.
Usage¶
fenn pull <template> [path] [--force]
Arguments¶
<template>(required): The name of the template to download. This corresponds to a folder name in the pyfenn/templates repository.[path](optional): The target directory where the template should be extracted. Defaults to the current directory (.).[--force](optional): Overwrite existing files in the target directory if it is not empty.
Examples¶
Basic Usage¶
Download the base template into the current directory:
fenn pull base
Specify Target Directory¶
Download the base template into a specific directory:
fenn pull base ./my-project
Overwrite Existing Files¶
If the target directory already contains files, use the --force flag to overwrite them:
fenn pull base ./existing-project --force
Typical Workflow¶
-
Choose a template: Browse available templates at https://github.com/pyfenn/templates to find one that matches your needs.
-
Pull the template: Run
fenn pull <template-name>to download the template into your project directory. -
Customize: Modify the downloaded files to fit your specific analysis requirements.
Available Templates¶
Check the templates repository for the latest list of available templates. Currently, a base template is available.