Create SWHIDs for Python classes, functions, and other source code fragments based on its abstract syntax tree.
Project description
Parsnips
Create SWHIDs for Python classes, functions, and other source code fragments based on their abstract syntax tree (AST).
Overview
Parsnips is a Python tool that analyzes Python source files using the built-in ast module and asttokens to create fine-grained, reproducible identifiers for fragments of Python code. It is designed to support persistent software identifiers (SWHIDs) for structural code elements such as:
- Functions
- Classes
- Assignments
- Expressions
- Other AST nodes
The resulting parse tree is exported into a fully deterministic folder structure, where each node:
- Is stored in a dedicated folder inside a hidden
.parsnipsdirectory. - Contains the exact source text corresponding to the node.
- Includes structured metadata for precise archival referencing.
Extraction Protocol
When Parsnips processes a Python file or directory, it follows this deterministic protocol:
-
Unified Extraction Root:
- Regardless of whether you provide a file or directory as input, Parsnips always creates a
.parsnips/subdirectory inside the directory where the file or directory resides. - This ensures a fully consistent and predictable output structure.
- Regardless of whether you provide a file or directory as input, Parsnips always creates a
-
Recursive Directory Traversal (when processing directories):
- Parsnips walks the entire directory tree starting at the input path.
- It identifies all
.pyfiles to process. - Symlinks are not followed.
- Any pre-existing
.parsnips/subdirectories are deleted and regenerated to ensure full reproducibility.
-
Per-File Processing:
- For each Python file, Parsnips parses the Abstract Syntax Tree (AST) using
astandasttokens. - The content SWHID for the entire file is computed using Python's
hashlib.blake2s()directly, fully following the Software Heritage content SWHID specification, without external library dependencies.
- For each Python file, Parsnips parses the Abstract Syntax Tree (AST) using
-
Node Processing:
- Each AST node is visited in traversal order.
- If a node lacks a line number, it inherits the nearest parent node’s line number.
- Each node is assigned:
- Its AST type (e.g.,
FunctionDef,ClassDef,Assign). - A label (e.g., function name, class name, or a sanitized version of the assigned target for assignments).
- Its AST type (e.g.,
- A deterministic folder is created for each node with the structure:
L{lineno}C{col_offset}T{traversal_index}__{node_type}__{node_label}
-
Label Sanitization:
- To ensure filesystem-safe and portable folder names, labels are strictly sanitized:
- Only characters
A-Z,a-z,0-9,_, and-are allowed. - All other characters (including spaces, parentheses, brackets, symbols, and punctuation) are replaced with underscores (
_).
- Only characters
- To ensure filesystem-safe and portable folder names, labels are strictly sanitized:
-
Outputs Generated:
For each node folder, Parsnips creates one file:
node_metadata.json- Contains structured metadata for the AST node including:
type: The AST node type (e.g.FunctionDef).label: The unsanitized label of the node.text: The exact source text fragment for the node.lineno: The node’s declared line number (ornullif absent).effective_lineno: The inherited line number after normalization.col_offset: The column offset of the node.file_swhid: The SWHID of the full source file.
- Contains structured metadata for the AST node including:
-
Directory Structure:
- The extraction output for each processed file is always written into:
{parent_dir}/.parsnips/parsnips__{file_stem}__{file_ext}/
- The extraction output for each processed file is always written into:
-
Folder Sorting:
- Folders are deterministically named using the inherited line number, column offset, and traversal index.
- Sorting is lexicographic but naturally places nodes with lower line numbers first.
Fragment-Level SWHIDs
- The content SWHID for each node fragment is not generated during extraction.
- Instead, the
node_metadata.jsonfile itself becomes the fragment boundary. - The fragment SWHID is computed as the
blake2s()hash over the serializednode_metadata.jsoncontent. - This ensures the SWHID includes full structural and textual information, not just the raw source text.
Linking SWHIDs with Anchor Qualifiers
Fragment-level SWHIDs can be paired with the file SWHID using SWHID's anchor qualifier.
For example:
- File SWHID:
swh:1:cnt:abcdef1234567890abcdef1234567890abcdef12 - Fragment SWHID:
swh:1:cnt:fedcba0987654321fedcba0987654321fedcba09 - Anchored form:
swh:1:cnt:fedcba0987654321fedcba0987654321fedcba09;anchor=swh:1:cnt:abcdef1234567890abcdef1234567890abcdef12
This allows the fragment to be fully tied to the exact version of its parent file.
CLI Parameters
Parsnips provides multiple command-line options:
| Argument | Description |
|---|---|
| path (positional argument) | Path to Python file or directory to process (default: current directory) |
-c or --clean |
Delete all .parsnips folders recursively |
-s or --search |
Search using a regular expression inside the text field of all node_metadata.json files |
-n or --normalize-search |
Apply Unicode normalization (NFC) to both the search pattern and node text before regex matching. This only applies to search operations and does not affect extraction. Extraction always preserves exact byte content for archival integrity. |
-q or --quiet |
Suppress console output |
-l or --logfile |
Write logs to specified JSON file |
--strict |
Fail immediately on first error or missing .parsnips folder |
Example Usage
Process a directory recursively:
parsnips path/to/my/project
- This will recursively process all
.pyfiles underpath/to/my/project, generate.parsnips/directories for each directory containing Python files, and populate these directories with metadata files for the extracted fragment-level outputs.
Process a single file:
parsnips path/to/file.py
- This will process only the single file
file.pyand output results to:
path/to/.parsnips/parsnips__file__py/
Example Input file example.py:
class MyClass:
def foo(self, x, y=(1, 2)):
return x * y[0]
result = MyClass().foo(10)
Example Output structure:
.parsnips/parsnips__example__py/
L1C0T1__ClassDef__MyClass/
L2C4T2__FunctionDef__foo/
L3C8T3__Return__node/
L5C0T4__Assign__result_MyClass__foo_10/
Search for the SWHID of a code fragment by using regular expressions for the source code fragment
You can use Parsnips to search for the SWHID of a code fragment by using regular expressions that match on the text of the code fragment.
Example Search Usage
Suppose you have already extracted a directory and want to search for any AST nodes containing "hello world".
Run:
parsnips path/to/my/project --search "hello world"
Example output:
{
".parsnips/parsnips__example__py/L8C4T7__Return__node/node_metadata.json": {
"node_swhid": "swh:1:cnt:1234567890abcdef1234567890abcdef12345678",
"node_metadata": {
"type": "Return",
"label": "node",
"text": "return \"hello world\"",
"lineno": 8,
"effective_lineno": 8,
"col_offset": 4,
"file_swhid": "swh:1:cnt:abcdef1234567890abcdef1234567890abcdef12"
}
},
".parsnips/parsnips__example__py/L9C0T8__Constant__hello_world/node_metadata.json": {
"node_swhid": "swh:1:cnt:fedcba0987654321fedcba0987654321fedcba09",
"node_metadata": {
"type": "Constant",
"label": "hello world",
"text": "\"hello world\"",
"lineno": 9,
"effective_lineno": 9,
"col_offset": 0,
"file_swhid": "swh:1:cnt:abcdef1234567890abcdef1234567890abcdef12"
}
}
}
If run with --strict mode and .parsnips folders are missing, the command will fail instead of silently returning empty results.
Licensing
Parsnips is licensed under the Apache License 2.0.
SPDX Identifier
Apache-2.0
Citation
If you use Parsnips in your research or projects, please cite it using the metadata provided in CITATION.cff.
Author
- Will Riley — wanderingwill@gmail.com
Related Projects
Disclaimer
Parsnips is an experimental tool designed to support research and archival workflows. Use at your own risk. Feedback and contributions are welcome.
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
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 parsnips-2.0.0.tar.gz.
File metadata
- Download URL: parsnips-2.0.0.tar.gz
- Upload date:
- Size: 11.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89fbabb9e7903232aa120ace6e7733d9f307c4e125a43dc3ae1182ba0e337e2d
|
|
| MD5 |
45813cf45a361691e0dc757e253c5a56
|
|
| BLAKE2b-256 |
0ec3219ccf95defc8e36d344b1b14af024fc04a36a39ffd115795c94c23255c9
|
File details
Details for the file parsnips-2.0.0-py3-none-any.whl.
File metadata
- Download URL: parsnips-2.0.0-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41bdce26a7030483ba5ee6d025c5ff494ee7dbd09f1cbce65be2c72e62c67844
|
|
| MD5 |
99e642dca87efbfa8819468b11190702
|
|
| BLAKE2b-256 |
21263a0d057f06b9b2010b13ca5b4e34476e66b62a98059074698282b15f6d7d
|