Skip to main content

tagsnip is a Python CLI tool for extracting tagged code snippets from local files or remote URLs, such as GitHub raw files. It serves as the backend for the tagsnip LaTeX package and enables dynamic inclusion of code snippets directly in LaTeX documents.

Installation

Install tagsnip from PyPI:

pip install tagsnip

After installation, the command tagsnip should be available in your shell:

tagsnip --help

Usage

tagsnip -s <source> -t <tag> [-o <output>]
tagsnip -c <output>

Command-line options

-s, --source   Local file path or remote URL.  
-t, --tag      Snippet tag to extract.  
-o, --output   Optional output file path.
-c, --cleanup  Removes temporary files at specified path. 

--source and --tag are mandatory arguments. If --output is provided, tagsnip writes the extracted snippet to the selected file. Otherwise, the snippet is written to stdout.

When --output is used, tagsnip also writes a metadata file next to the output file. For example, if the output file is snippet.tmp, then the metadata file is snippet.tmp.meta. Both files can be removed using the --cleanup option.

The metadata file contains the original start and end line numbers of the extracted snippet. This is used by the LaTeX package to preserve source line numbering.

Supported sources

  • Local text files
  • Remote text files available over HTTP or HTTPS
  • GitHub raw file URLs

Tag format

tagsnip extracts code between two matching markers:

tagsnip-start <tag>
...
tagsnip-end <tag>

Tags are case-sensitive. Markers must appear on separate lines. The tag must follow the marker name after one space.

For example:

# tagsnip-start demo
print("This line will be extracted.")
# tagsnip-end demo

The marker lines themselves are not included in the extracted snippet.

Error handling

tagsnip reports errors when:

  • The tag is not found
  • Start/end markers are mismatched
  • Multiple start markers exist
  • The source cannot be fetched

Quick example

Example source file

# tagsnip-start demo
def main():
    x = 1
    y = 2
    print(x + y)

    return 0
# tagsnip-end demo

if __name__ == "__main__":
    import sys
    sys.exit(main())

CLI usage

Write the snippet to stdout:

tagsnip -s example.py -t demo

Write the snippet to a file:

tagsnip -s example.py -t demo -o out/out.txt

Get snippet from URL:

tagsnip -s https://raw.githubusercontent.com/brozrost/tagsnip/main/docs/example.py -t demo

Remove temporary files:

tagsnip -c out/out.txt

Python usage

from tagsnip import extractor

snippet = extractor.extract_from_file("example.py", "demo")

Compatibility note

The Python package and the LaTeX package should be kept in sync. Backwards compatibility is not guaranteed.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tagsnip-1.0.2.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tagsnip-1.0.2-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file tagsnip-1.0.2.tar.gz.

File metadata

  • Download URL: tagsnip-1.0.2.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tagsnip-1.0.2.tar.gz
Algorithm Hash digest
SHA256 d909bee2093bae5e714ea18a9435050be1f87a15fc569c5fa8d7945984e9b1da
MD5 8ba8cba12a265ff62975a33b0e07e660
BLAKE2b-256 847a0e66e9c1be67f4ae6aa8f1d7a5839535b49fe284e275522ebd382b61d272

See more details on using hashes here.

Provenance

The following attestation bundles were made for tagsnip-1.0.2.tar.gz:

Publisher: python-publish.yml on brozrost/tagsnip

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tagsnip-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: tagsnip-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 6.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tagsnip-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0e3e6f4085a60e506c6403821f2eedc123766723c9661af9b78c4be1ebbf61d2
MD5 6fdbf4f6117dd868b01d72b271a16862
BLAKE2b-256 bfa7fe2ad79d256f32dede5a77bea60bf24fab9f796844843197680ba56df38d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tagsnip-1.0.2-py3-none-any.whl:

Publisher: python-publish.yml on brozrost/tagsnip

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.0.2 This release

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page