FastParser.Language.Python
0.1.0-preview.32
This is a prerelease version of FastParser.Language.Python.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package FastParser.Language.Python --version 0.1.0-preview.32
NuGet\Install-Package FastParser.Language.Python -Version 0.1.0-preview.32
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FastParser.Language.Python" Version="0.1.0-preview.32" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FastParser.Language.Python" Version="0.1.0-preview.32" />
<PackageReference Include="FastParser.Language.Python" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FastParser.Language.Python --version 0.1.0-preview.32
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FastParser.Language.Python, 0.1.0-preview.32"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package FastParser.Language.Python@0.1.0-preview.32
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FastParser.Language.Python&version=0.1.0-preview.32&prerelease
#tool nuget:?package=FastParser.Language.Python&version=0.1.0-preview.32&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FastParse Python Language Extension
Status: Preview
This extension registers the canonical parse language:
python
It uses the vendored grammars/tree-sitter-python grammar and exports:
fastparse_language_extension_descriptor
tree_sitter_python
Build locally:
cmake -S . -B build-python-extension -DCMAKE_BUILD_TYPE=Release \
-DFASTPARSE_PYTHON_GRAMMAR_DIR=grammars/tree-sitter-python
cmake --build build-python-extension --config Release --target fastparse_language_python
Load explicitly:
from fastparse import FastParse
parser = FastParse()
parser.load_language_extension("bin/libfastparse_language_python.dylib")
result = parser.parse_text("def run():\n return 1\n", language="python")
The packaged-extension goal is:
parser.load_bundled_language("python")
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- FastParser (>= 0.1.0-preview.32)
-
net9.0
- FastParser (>= 0.1.0-preview.32)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.2 | 107 | 8/24/2026 |
| 0.1.1 | 99 | 8/21/2026 |
| 0.1.1-preview.1 | 69 | 8/21/2026 |
| 0.1.0 | 126 | 6/30/2026 |
| 0.1.0-preview.37 | 72 | 8/13/2026 |
| 0.1.0-preview.36 | 72 | 8/13/2026 |
| 0.1.0-preview.35 | 69 | 8/13/2026 |
| 0.1.0-preview.34 | 67 | 8/13/2026 |
| 0.1.0-preview.33 | 78 | 8/13/2026 |
| 0.1.0-preview.32 | 76 | 6/30/2026 |
| 0.1.0-preview.23 | 88 | 6/29/2026 |
Preview FastParse language extension for python.