SnipContext
AI-powered code snippet & context manager.
Save, search, tag, and instantly inject your best boilerplate, patterns, and context into any LLM (Claude, Cursor, Grok, Windsurf, etc.).
Local-first โ Open source โ Built for humans + AI agents
๐ง Stop Feeding Your AI Clipboard Garbage โ Why SnipContext exists.
Searching, tagging, and exporting code snippets โ all from the terminal. Watch the animated demo (GIF)
Why SnipContext?
- Stop rewriting the same auth flows, component patterns, or utility functions
- Stop feeding LLMs messy or outdated code from your clipboard history
- Build your personal/team "second brain" of high-quality, reusable code
- Semantic search finds code by meaning, not just keywords
- LLM-optimized exports format your snippets for maximum comprehension
Key Features
| Feature | Status | Description |
|---|---|---|
| Rich snippet saving with tags, metadata, and versioning | โ | Full CRUD with soft-delete |
| Semantic search with local embeddings | โ | sentence-transformers + FAISS, runs offline |
| Hybrid search โ semantic + keyword fusion | โ | Configurable weights, TF-IDF + embeddings |
| LLM-optimized export providers | โ | Claude XML, Cursor, OpenAI, Generic Markdown |
| Auto-tagging via embeddings | โ | Suggests tags based on similar snippets |
| Similarity-based deduplication | โ | Warns when adding near-duplicate snippets |
| Semantic search | โ | Local embeddings with FAISS |
| File watchdog / real-time indexing | โ | Auto-reindex on file changes |
| Plugin system | โ | Entry points for providers and exporters |
| CLI + Python library | โ | Use from terminal or import as a module |
| Git-friendly local-first storage | โ | One JSON file per snippet, easy to version |
Supported LLM Providers
| Provider | Format | Best For |
|---|---|---|
| Generic | Markdown | Universal compatibility |
| Claude | XML documents | Anthropic Claude |
| Cursor | File-style headers | Cursor IDE |
| OpenAI | Delineated sections | ChatGPT / GPT-4 |
| Ollama | Local prompt format | Local Ollama models |
Quick Start
Installation
# From PyPI with uv (recommended โ faster installs, better dependency resolution)
uv tool install snipcontext
# From PyPI with pip
pip install snipcontext
# From source (after cloning)
cd snipcontext
uv sync # install all deps (including dev)
uv run sc --help # run without activating venv
# Or with pip (traditional)
pip install -e ".[dev]"
Try Semantic Search
Semantic search is SnipContext's core differentiator โ it finds code by meaning, not just exact keywords.
# 1. Install SnipContext with semantic search
pip install "snipcontext[semantic]"
# 2. Add some example snippets
sc add "import pandas as pd; df = pd.read_csv('data.csv')" --title "Read CSV" --tag python --tag pandas
sc add "import json; data = json.load(open('config.json'))" --title "Load JSON" --tag python --tag json
sc add "from fastapi import FastAPI; app = FastAPI()" --title "FastAPI App" --tag python --tag fastapi
# 3. Search by intent (not exact keywords)
sc search "how to read a CSV file"
# โ Finds the "Read CSV" snippet
sc search "parse JSON"
# โ Finds "Load JSON"
sc search "create a web API"
# โ Finds "FastAPI App"
Note: Semantic search requires the
[semantic]extra (sentence-transformers + FAISS). If you installed the core package without it, upgrade withpip install "snipcontext[semantic]".
๐ก Why uv? This project uses
uvfor dependency management (uv.lockpinned).uv syncguarantees reproducible installs.pip installworks but may resolve dependencies differently.
Or install directly from GitHub
pip install git+https://github.com/billybox1926-jpg/snipcontext.git
> **๐ฆ Dependency Footprint:** SnipContext's core (add, list, edit, delete, keyword search, export) has no heavy dependencies. Optional features are split into extras:
> - `pip install snipcontext[semantic]` โ semantic search with sentence-transformers + FAISS (~500MB, requires Rust toolchain on ARM)
> - `pip install snipcontext[tui]` โ interactive terminal UI
> - `pip install snipcontext[all]` โ all optional features
>
> **Lighter embedding model:** The default model is `all-MiniLM-L6-v2` (~80MB). For a lighter alternative, set `SNIPCONTEXT_EMBED_MODEL_NAME=all-MiniLM-L4-v2` (~30MB) or `SNIPCONTEXT_EMBED_MODEL_NAME=paraphrase-MiniLM-L3-v2` (~20MB) before searching.
>
> **Skip semantic at runtime:** Even with `pip install snipcontext[semantic]`, use `--no-semantic` to force keyword-only search for faster results:
> ```bash
> snipcontext search "hello world" --no-semantic
> ```
>
> **ARM / Android / Termux:** The `semantic` extra requires Rust to build native wheels. On platforms without pre-built wheels (ARM64, Android/Termux), install the core package only and use keyword search + export features. Semantic search gracefully degrades with clear error messages when its dependencies are missing.
> **Windows Users:** The short alias `sc` is shadowed by the Windows built-in `sc.exe` (Service Control). Use the new `snip` command for a collision-free experience:
>
> 1. **Preferred alias** โ available after install/upgrade:
> ```powershell
> snip add "print('hello')" --title "Hello" --tag python
> ```
> 2. **Full command name** โ always works:
> ```powershell
> snipcontext add "print('hello')" --title "Hello" --tag python
> ```
> 3. **Wrapper script** โ shipped automatically with `pip install`; adds `snipcontext.cmd` to your Scripts directory:
> ```powershell
> snipcontext.cmd search "hello world"
> ```
>
> ## Works with Hermes Agent
>
> SnipContext is built CLI-first, so [Hermes Agent](https://hermes-agent.nousresearch.com) can use it directly when running in terminal mode. Common integrations:
>
> - `export --provider generic/openai/cursor/claude` to pull snippets into a prompt
> - `edit --framework --version --source` to keep metadata current
> - `add --auto-title` for fast ingestion
>
> No Hermes-specific config is required
>
> ### Standalone Binary
Two options for running without a Python environment:
**Option 1 โ `uv tool` (recommended, lightweight):**
```bash
# Core features only (keyword search, export)
uv tool install snipcontext
# All features (semantic search, TUI, web)
uv tool install "snipcontext[all]"
# Use directly โ uv manages the venv invisibly
snipcontext add "print('hello')" --title "Hello"
Option 2 โ Pre-built binary (no Python needed):
Download from the latest GitHub Release. Two variants are available for each platform:
| Variant | Includes | Size (approx.) |
|---|---|---|
snipcontext-<platform> |
Everything (semantic, TUI, web) | ~200MB |
snipcontext-<platform>-minimal |
Core only (keyword search, export) | ~80MB |
# Linux / macOS
chmod +x snipcontext
./snipcontext search "hello world"
# Windows
snipcontext.exe search "hello world"
Build from source:
# Using Make
make build-binary # full build
make build-binary-minimal # core-only build
# Using PyInstaller directly
pip install pyinstaller
pyinstaller snipcontext.spec
# Output: dist/snipcontext (or dist/snipcontext.exe)
Security Considerations
- stdin for sensitive content: Use
sc add --file secret.pyor pipe via stdin (cat secret.py | sc add --file) to avoid shell history leaks. - No network calls: All processing is local. No data leaves your machine.
# Windows: use the full command name or the .cmd wrapper
snipcontext add "print('hello')" --title "Hello" --tag python
snipcontext search "hello world"
snipcontext list
snipcontext stats
# Or run via module
python -m snipcontext add "print('hello')" --title "Hello" --tag python
Try SnipContext Without Any Setup
New to SnipContext? Run the built-in demo to see it in action with realistic sample snippets:
sc demo
What it does:
- If your collection is empty, it seeds sample snippets (Python, TypeScript, Go, Rust, Bash) and runs quick previews of semantic search and export.
- If you already have snippets, it warns and exits without touching your data so you can pick up where you left off.
After the demo, try sc list, sc search, sc add, sc export, and sc build-index to keep exploring.
Tip: The demo works best with the
[semantic]extra installed. Without it, search and export previews still run but may use simpler fallbacks.
Verify Installation
snipcontext --help # or: python -m snipcontext --help
snipcontext providers # List available export providers
Project-Local Snippets
v0.5.0+ โ Commit your snippet collection to git and share it with your team.
By default SnipContext stores snippets in a global directory (~/.local/share/snipcontext). You can opt into project-local mode by scaffolding a .snipcontext/ directory inside your repository:
sc init --local
This creates:
.snipcontext/
โโโ config.yaml # Project-specific settings
โโโ snippets/ # Snippet storage (JSONL)
โโโ index.faiss # Search index (gitignored)
โโโ .gitignore # Ignores index.faiss
Once initialized, every SnipContext command run from that directory (or any subdirectory) automatically uses the local collection. You can override the discovery order with environment variables:
| Priority | Source | Example |
|---|---|---|
| 1 | SNIPCONTEXT_HOME env var |
SNIPCONTEXT_HOME=/path/to/snippets sc list |
| 2 | .snipcontext/ in CWD or ancestor |
sc init --local in /my/project |
| 3 | Global platform directory | ~/.local/share/snipcontext |
Use sc info to inspect the active mode and paths:
sc info
CLI Usage
# Add a snippet
snipcontext add "def authenticate(token):\n return jwt.decode(token, SECRET)" \
--title "JWT Authentication" \
--desc "Decode and verify JWT tokens" \
--lang python \
--tag auth --tag jwt --tag security
> SnipContext performs a fast hash-based exact duplicate check before the
> semantic dedup step. If a snippet with identical content already exists,
> you'll be prompted before adding it again.
# Add with rich metadata (v0.3.0+)
snipcontext add "from fastapi import FastAPI" \
--title "FastAPI App Setup" \
--framework fastapi \
--version "0.100+" \
--source "https://fastapi.tiangolo.com/tutorial/first-steps/" \
--custom "team=backend" --custom "priority=high"
# Search semantically
snipcontext search "how to validate auth tokens"
# Import curated collections
snipcontext import snipcontext:python-stdlib
snipcontext import https://raw.githubusercontent.com/org/snippets/main/python.yaml
snipcontext import https://github.com/org/snippets/archive/main.tar.gz
snipcontext import https://raw.githubusercontent.com/org/snippets/main/python.yaml --list
# Search by tag
snipcontext search "auth" --mode tag
# Export for Claude
snipcontext search "authentication" --provider claude --output context.xml
# List all snippets
snipcontext list
# Show stats
snipcontext stats
# Delete a snippet
snipcontext delete <snippet-id>
# Edit a snippet
snipcontext edit <snippet-id> --title "New Title" --add-tag python
# Edit metadata
snipcontext edit <snippet-id> --framework react --version "18.x" --source "https://react.dev"
# Rebuild search index
snipcontext build-index --force
# Benchmark vector latency
snipcontext benchmark index --vectors 5000 --index-type ivfpq
# Watch for file changes and auto-reindex
snipcontext watch
# Run the demo
snipcontext demo
CLI Commands Reference
| Command | Description | Key Options |
|---|---|---|
sc export |
Export snippets in LLMโoptimized format | --provider/-p (claude, cursor, openai, generic), --output/-o, --query/-q, --id, --limit/-n |
sc edit |
Edit an existing snippet | <id>, --title, --content/-c, --tag/--add-tag, --remove-tag, --lang/-l, --source, --framework, --version, --interactive/-i, --force/-f |
sc stats |
Show collection statistics | --detailed/-d, --json |
sc providers |
List available export providers | --health (run provider health checks) |
sc config path |
Show config / data / index directories | (no options) |
sc config show |
Show current configuration (YAML) | --force |
sc config set <key> <value> |
Update a config value | --save/--no-save |
sc history list |
Show recent search history | --limit |
sc history favorites |
Show favorite queries | (no options) |
sc export
Formats snippets for consumption by LLMs or IDEs.
# Export all snippets as Generic Markdown to stdout
snipcontext export --provider generic
# Export search results for Claude to a file
snipcontext export --query "auth" --provider claude --output context.xml
# Export specific snippets by ID
snipcontext export --id abc123 --id def456 --provider openai -o snippets.md
# Limit query results
snipcontext export --query "database" --limit 5 --provider cursor
What gets exported: snippet content, metadata (title, language, tags, framework, version), and an Export schema version: 1.0.0 header.
sc edit
Supportspartial updates โ only specified fields are changed.
# Update title and add a tag
snipcontext edit abc123 --title "JWT Auth" --tag security
# Update content from a file
snipcontext edit abc123 --file fixed_auth.py --lang python
# Update multiple metadata fields
snipcontext edit abc123 --framework fastapi --version "0.100+" --source "https://example.com"
# Open in $EDITOR for full editing
snipcontext edit abc123 --interactive
sc stats
# Basic overview
snipcontext stats
# Detailed analytics with distributions
snipcontext stats --detailed
# Machine-readable JSON
snipcontext stats --json
Shows: total snippets, tags, languages, size, dates, language distribution, top tags, access stats, and size metrics (detailed).
sc providers
# List all available export providers
snipcontext providers
# Check provider health
snipcontext providers --health
Built-in providers: generic (Markdown), claude (XML), cursor (file headers), openai (delineated sections).
sc config path
# Show all storage and config locations
snipcontext config path
Outputs: config file path, data directory, snippets directory, and index directory.
Library Usage
from snipcontext.core.models import Snippet, SnippetMetadata, Language
from snipcontext.core.storage import StorageEngine
from snipcontext.core.search import HybridSearch
from snipcontext.config.settings import get_config
# Initialize
config = get_config()
storage = StorageEngine(config)
# Create and save a snippet
snippet = Snippet(
content="def memoize(fn):\n cache = {}\n ...",
metadata=SnippetMetadata(
title="Memoization Decorator",
description="Cache function results",
language=Language.PYTHON,
),
tags=["python", "decorator", "performance"],
)
storage.save(snippet)
# Search with semantic understanding
searcher = HybridSearch(config)
searcher.index_snippets(storage.list_all())
results = searcher.search("cache function results decorator")
for r in results:
print(f"{r.score:.3f} | {r.snippet.metadata.title}")
Platform Support
SnipContext is tested on the following platforms. Features marked with โ ๏ธ are
conditionally available; see the notes below.
| Platform | Core CLI | Semantic Search | TUI | Web |
|---|---|---|---|---|
| Linux x86_64 | โ | โ | โ | โ |
| macOS x86_64 | โ | โ | โ | โ |
| macOS ARM (Apple Silicon) | โ | โ | โ | โ |
| Windows | โ | โ | โ | โ |
| Linux ARM (Raspberry Pi, etc.) | โ | โ ๏ธ* | โ ๏ธ* | โ |
| Android / Termux | โ ๏ธ** | โ | โ | โ |
* semantic extra requires a Rust toolchain to compile native
wheels on ARM. Install Rust (rustup or distro packages) before running
pip install snipcontext[semantic].
** The core CLI may work on Termux, but pydantic-core currently requires a
Rust toolchain with stdlib support, which is not available there by default.
See #105.
Installation per platform
SnipContext is a Python package. The core CLI works on all supported platforms with Python 3.10+.
# Core only (keyword search, export, watchdog)
pip install snipcontext
Optional extras unlock additional features:
|| Extra | Description | Required for |
|-------|-------------|--------------|
| [semantic] | sentence-transformers + FAISS | Semantic search, auto-tagging, deduplication |
| [tui] | textual + prompt-toolkit | sc tui |
| [all] | Every extra | Full feature set |
# With semantic search
pip install "snipcontext[semantic]"
# All features
pip install "snipcontext[all]"
Platform-specific notes
- Windows: The
scalias is shadowed bysc.exe. Use the fullsnipcontextcommand or thesnipcontext.cmdwrapper installed bypip. See Windows Users for details. - macOS: Both Intel and Apple Silicon are supported. If
sentence-transformershas trouble withnumpy, installnumpyexplicitly first. - Linux / macOS (x86_64): Pre-built wheels are available for all extras; no compiler toolchain is required.
- Linux ARM: Pre-built wheels are not always available. Install
rustupfirst, then install extras. The core CLI and TUI work without Rust. - Android / Termux: Core install is currently blocked by
pydantic-core's Rust/stdlib requirement (#105). Use keyword search and export on platforms where this is resolved. - Headless / CI: Set
SNIPCONTEXT_EMBED_MODEL_NAME=all-MiniLM-L6-v2(default) or a smaller model to reduce download size. Semantic search requires a writable cache directory for model files.
Related issues
- #105 โ ARM/Termux install blocker (
pydantic-core/ Rust toolchain) - #91 โ Optional dependency groups (extras)
- #106 โ ARM CI test matrix
๐ Index Rebuild & Resilience
SnipContext automatically detects and recovers from index corruption. The HybridSearch engine validates index integrity on load and rebuilds automatically when needed.
Manual Rebuild
# Build or rebuild the semantic search index
snipcontext build-index
# Force rebuild (useful after corruption, dependency changes, or mode switches)
snipcontext build-index --force
Auto-Recovery
The search engine automatically:
- Validates index integrity on load (checks ID map lengths, matrix dimensions)
- Cleans up corrupted files (deletes mismatched/corrupted index files)
- Falls back gracefully โ if semantic index unavailable, runs keyword-only search
- Rebuilds on demand โ
index_snippets()auto-loads existing indices before rebuilding
Watchdog / Real-time Indexing
Run snipcontext watch to monitor the snippets directory and automatically reindex when files change:
snipcontext watch
The watcher uses watchdog to monitor your snippets directory. When a file is added, modified, or deleted, it rebuilds the search index incrementally so new content is searchable immediately.
Debounce: By default, multiple rapid changes are debounced into a single reindex (2-second window). This prevents excessive work during saves, git checkouts, or batch edits.
Foreground mode: The watcher runs in the foreground โ press Ctrl+C to stop. For continuous background monitoring, run it in a separate terminal or as a background process.
Disable via config if you prefer manual rebuilds only:
export SNIPCONTEXT_STORAGE__WATCHDOG_ENABLED=false
Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ CLI (Typer + Rich) โ
โโโโโโโโโโโโฌโโโโโโโโโโโฌโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโค
โ add โ search โ export โ edit/delete โ
โ list โ stats โ watch โ demo โ
โโโโโโฌโโโโโโดโโโโโฌโโโโโโดโโโโโฌโโโโโโดโโโโโโโโฌโโโโโโโโโ
โ โ โ โ
โผ โผ โผ โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Search Engine (HybridSearch) โ
โ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ Semantic โ โ Keyword โ โ
โ โ FAISS Index โ โ TF-IDF (sklearn) โ โ
โ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Storage Engine โ
โ Git-friendly JSON per snippet โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Data Models (Pydantic v2) โ
โ Snippet / SnippetMetadata / Language โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
See docs/ARCHITECTURE.md for detailed design documentation.
Roadmap
- Core snippet CRUD with git-friendly storage
- Semantic + hybrid search with local embeddings
- LLM-optimized export providers (Claude, Cursor, OpenAI, Generic)
- Rich CLI with Typer
- Plugin system with entry points
- Python library distribution (PyPI)
- Auto-tagging and deduplication
- Soft-delete support
- File watchdog / real-time indexing
- Import from GitHub Gists
- Import from Git repositories
- Snippet templates and scaffolding
- Team sharing via git-sync
- VS Code extension
Configuration
SnipContext uses environment variables and a YAML config file:
# Use GPU for embeddings
export SNIPCONTEXT_EMBED_DEVICE="cuda"
# Change embedding model
export SNIPCONTEXT_EMBED_MODEL_NAME="all-mpnet-base-v2"
# Adjust search weights
export SNIPCONTEXT_SEARCH_SEMANTIC_WEIGHT="0.8"
# Enable auto-tagging
export SC_AUTO_TAG_ENABLED=true
# Enable deduplication
export SNIPCONTEXT_DEDUP_ENABLED=true
export SNIPCONTEXT_DEDUP_THRESHOLD="0.95"
Or edit ~/.config/SnipContext/snipcontext.yaml:
embedding:
model_name: "all-MiniLM-L6-v2"
device: "cpu"
search:
default_mode: "hybrid"
semantic_weight: 0.7
keyword_weight: 0.3
top_k: 10
auto_tag:
enabled: true
top_k: 5
min_frequency: 2
auto_accept: false
dedup:
enabled: true
threshold: 0.95
๐ท๏ธ Auto-Tagging
When you add a snippet with sc add, SnipContext can suggest tags based on semantically similar existing snippets. This saves time and improves tag consistency across your collection.
- Enabled by default if you install the
[semantic]extra and have a populated FAISS index. - How it works: SnipContext uses the same FAISS index as semantic search to find the nearest neighbors, extracts their tags, and surfaces the most frequent ones.
- Interaction with deduplication: Auto-tagging and deduplication share the same embedding step. If both are enabled, the embedding is computed once and reused.
Configuration
| Variable | Default | Description |
|---|---|---|
SC_AUTO_TAG_ENABLED |
true |
Enable auto-tag suggestions on sc add |
SC_AUTO_TAG_TOP_K |
5 |
Number of similar snippets to consider |
SC_AUTO_TAG_MIN_FREQUENCY |
2 |
Minimum tag frequency among neighbors to suggest it |
SC_AUTO_TAG_AUTO_ACCEPT |
false |
Automatically apply suggested tags without prompting |
Or via YAML config:
auto_tag:
enabled: true
top_k: 5
min_frequency: 2
auto_accept: false
Requirements
Install with the [semantic] extra to enable auto-tagging:
pip install snipcontext[semantic]
This pulls in sentence-transformers and faiss-cpu.
Development
# Clone
git clone https://github.com/billybox1926-jpg/snipcontext.git
cd snipcontext
# Install dev dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run with coverage
pytest --cov=snipcontext
# Linting
ruff check .
mypy .
# Install pre-commit hooks
pre-commit install
Documentation
- Quick Start โ get started with semantic search
docs/search.mdโ index types, auto-switch behavior, keyword fallbackdocs/import.mdโ importing snippets, archives, and built-in snippet collectionsdocs/configuration.mdโ environment variables and YAML configdocs/web.mdโ local web API server (sc serve)docs/tui.mdโ interactive terminal shell (sc repl)docs/plugin-examples.mdโ example plugin implementationsdocs/plugin-testing.mdโ testing plugin integrationsdocs/providers.mdโ provider contract and custom provider guidedocs/migrate.mdโ migration guides from VS Code, SnippetsLab, Piecesdocs/performance.mdโ benchmarks and performance expectationsdocs/API.mdโ Python library usagedocs/benchmark.mdโsc benchmark indexusagedocs/ARCHITECTURE.mdโ detailed design documentation
Project Structure
snipcontext/
โโโ src/snipcontext/ # Python package
โ โโโ __init__.py
โ โโโ __main__.py # python -m snipcontext
โ โโโ cli/
โ โ โโโ main.py # Typer CLI commands
โ โโโ config/
โ โ โโโ settings.py # Pydantic Settings
โ โโโ core/
โ โ โโโ models.py # Pydantic data models
โ โ โโโ storage.py # Git-friendly JSON storage
โ โ โโโ search.py # Semantic + hybrid search
โ โ โโโ auto_tag.py # Embedding-based auto-tagging
โ โ โโโ watcher.py # File watchdog
โ โโโ plugins/
โ โ โโโ base.py # Plugin base + manager
โ โโโ providers/
โ โโโ base.py # Provider interface
โ โโโ claude.py # Anthropic Claude XML
โ โโโ cursor.py # Cursor IDE format
โ โโโ openai.py # OpenAI format
โ โโโ generic.py # Universal Markdown
โโโ tests/ # Test suite
โโโ docs/ # Documentation
โ โโโ API.md
โ โโโ providers.md
โ โโโ plugins.md
โ โโโ ARCHITECTURE.md
โโโ pyproject.toml
โโโ CHANGELOG.md
โโโ README.md
License & Contributing
MIT License โ see LICENSE for details.
Contributions are welcome! Please read CONTRIBUTING.md and CODE_OF_CONDUCT.md first. New contributors should check out our Good First Issues.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file snipcontext-0.6.1.tar.gz.
File metadata
- Download URL: snipcontext-0.6.1.tar.gz
- Upload date:
- Size: 109.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2e5f681b43455330cd66b0efec040f47ff4ff2189038f73976e6c2fcc6cff0b
|
|
| MD5 |
dcacb8404d191170d702fa0bf9de501d
|
|
| BLAKE2b-256 |
688e4a139fd174d325bf7d1d52e1b4d7788106780a70f5d81b00f8db99ee06c5
|
Provenance
The following attestation bundles were made for snipcontext-0.6.1.tar.gz:
Publisher:
release.yml on billybox1926-jpg/snipcontext
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
snipcontext-0.6.1.tar.gz -
Subject digest:
d2e5f681b43455330cd66b0efec040f47ff4ff2189038f73976e6c2fcc6cff0b - Sigstore transparency entry: 2387482249
- Sigstore integration time:
-
Permalink:
billybox1926-jpg/snipcontext@37b50ca79e65afa634c6052a80b8dc49f32b4db9 -
Branch / Tag:
refs/tags/v0.6.1 - Owner: https://github.com/billybox1926-jpg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@37b50ca79e65afa634c6052a80b8dc49f32b4db9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file snipcontext-0.6.1-py3-none-any.whl.
File metadata
- Download URL: snipcontext-0.6.1-py3-none-any.whl
- Upload date:
- Size: 129.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a48da3ee4f7a743e74792f8bebba6363d936920caa843a16f6f4e0e6ae78278b
|
|
| MD5 |
6638699e8b1d351bea97a29a120997ea
|
|
| BLAKE2b-256 |
b721a722826611a27fa56e830968e39a837368a830993fb69e97248f8dd4d756
|
Provenance
The following attestation bundles were made for snipcontext-0.6.1-py3-none-any.whl:
Publisher:
release.yml on billybox1926-jpg/snipcontext
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
snipcontext-0.6.1-py3-none-any.whl -
Subject digest:
a48da3ee4f7a743e74792f8bebba6363d936920caa843a16f6f4e0e6ae78278b - Sigstore transparency entry: 2387482251
- Sigstore integration time:
-
Permalink:
billybox1926-jpg/snipcontext@37b50ca79e65afa634c6052a80b8dc49f32b4db9 -
Branch / Tag:
refs/tags/v0.6.1 - Owner: https://github.com/billybox1926-jpg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@37b50ca79e65afa634c6052a80b8dc49f32b4db9 -
Trigger Event:
push
-
Statement type: