Skip to main content

Python package for extracting tagged code snippets from local files or remote sources.

Project description

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.

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

tagsnip-1.0.1.tar.gz (9.3 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.1-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: tagsnip-1.0.1.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for tagsnip-1.0.1.tar.gz
Algorithm Hash digest
SHA256 87f775ceab3372ac6eccc7586c3c449f4ca839f16dd550af8bfc2fc539ce825d
MD5 b934c6cdb40d45964daf63d4291c8fdd
BLAKE2b-256 41fdb40abd544bc179aaebab299c0a328df7c8a9a4f911884106447249b3cf0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tagsnip-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 6.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for tagsnip-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 613e956703b2f42d568405e424c52e3eef2752c621c5f2775ad00570eebc6c53
MD5 5ccac233ee26e08094a4d47011f21726
BLAKE2b-256 094c37ec722bdc4fa4cbbe2029fd04beb191fc9496b3cbe9a5f244020eab9338

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page