snex - snippet extractor
Project description
snex - snippet extractor
Extract snippets for blog posts or examples.
How to use
Installation
pip install snex
Tag Snippets
Let's assume that you have a project in /path/to/your/project
. You navigate to the
region where you want to extract a snippet and tag it as follows (#
is regarded as
comment prefix):
# :snippet snippet-name-without-whitespace
def foobar():
doit()
foobar()
# :endsnippet
- Empty lines after the start and before the end are removed.
- A snippet name is mandatory.
- The snippet
name
is sanitized to prevent malicious code to overwrite arbitrary files on your system.
Advanced snippet tagging
You can also overwrite the lang
config to use a different language for this snippet.
# :snippet snippet-name-without-whitespace lang: scala
Everything after the snippet name is parsed as YAML dict:
{ $text_after_snippet_name }
, e.g. lang: scala, other_param: "hello world"
is parsed
as { lang: scala, other_param: "hello world" }
YAML.
This means that you can also customise your parameter substitutions with a config like:
config {
default {
"output_template": "```{{lang}} - {{other_param}}\n{{{snippet}}}\n```\n",
"valid_param_keys": [ "lang", "name", "other_param" ]
...
}
}
The output template is parsed as mustache template.
Setup
create a snex.conf.yaml in the root directory of a project you want to create snippets from:
default:
output_path: "snippets"
comment_prefix: "# "
comment_suffix: ""
src:
lang: "python"
root: "src"
glob: "**/*.py"
github:
comment_prefix: "# "
lang: "python"
path: "https://raw.githubusercontent.com/jwbargsten/snex/master/src/snex/core.py"
The config syntax is YAML.
You have 3 layers of settings in a section:
- the global default config in
docs/snippets/global-default-config.md
- the config section
default
in yoursnex.conf.yaml
file (which overwrites the global default). - the specific config section in your
snex.conf.yaml
(the section name is prefix for snippetsdefault
is reserved.). The configuration in a specific section overwrites the default section which overwrites the global default config.
Run
You created a /path/to/your/project/snex.conf.yaml
like described in the previous topic.
From the project directory
cd /path/to/your/project
snex run
This will read snex.conf.yaml
in the current directory and dump the snippets into the
configured output_path
.
From a different directory
snex run /path/to/your/project
This will read /path/to/your/project/snex.conf.yaml
and dump the snippets into the
configured output_path
.
From a different directory to a different snippet output directory
snex run /path/to/your/project /path/custom/snippet/output/dir
This will read /path/to/your/project/snex.conf.yaml
and dump the snippets into
/path/custom/snippet/output/dir
.
TAKE CARE
This invocation will overwrite the output dir of all defined config sections. Which means that all snippets are dumped into the same directory.
Caveats (or features)
- Snippets are overwritten without confirmation. This makes it easy to update everything, but you have to take care that you will not overwrite stuff you want to keep.
Project details
Release history Release notifications | RSS feed
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 snex-3000.2.1.tar.gz
.
File metadata
- Download URL: snex-3000.2.1.tar.gz
- Upload date:
- Size: 14.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7151ae36055af8f1e4aba82f842523897dee9e7a39cca89b7f752362d5571b62 |
|
MD5 | 1d8812526501b100466a056574ffee14 |
|
BLAKE2b-256 | a9066f2417782e7905b6cb2234e6c0d4096687c06ce65cb72d6afbb595ec2bc4 |
File details
Details for the file snex-3000.2.1-py3-none-any.whl
.
File metadata
- Download URL: snex-3000.2.1-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31268b272a8bc042d48dfe051a7cb090b1a124f6fdb6d926189a2568132c0814 |
|
MD5 | d938b0ad9c2e20b383b844514741ecb0 |
|
BLAKE2b-256 | c282516135e5c2476bda8faeee3910fc74bbf07d7d33bbeb0ca3394d58ed0b5f |