Skip to main content

rgapi

rgapi provides fd-style file discovery and rg-style text search from Python without starting a shell command.

It uses the same ignore, grep-regex, and grep-searcher crates that ripgrep uses for walking, regex matching, and file scanning. Walking and searching run in parallel by default. Most expensive work stays in Rust.

Overview

For common file discovery and search:

from rgapi import fd, ls, rg, rg_iter

fd(".", ext="py", exclude="test_*.py")
ls("src")
for row in rg_iter("TODO", ".", include="*.py", context=2): print(row.asdict())
rg("TODO", ".", ext="py", skip_dir=".venv", paths=True)
rg("TODO", ["src", "tests"], ext="py")

For cell-aware search of Jupyter notebooks (see Notebooks):

from rgapi import nbrg

nbrg("read_csv", ".", cell_context=1)

Walk and search functions have async versions. Streaming versions yield results as the search finds them. See Async:

from rgapi import fda, rga, rga_iter, nbrga, nbrga_iter

await rga("TODO", ".", ext="py", timeout_ms=200)
async for row in rga_iter("TODO", "."): print(row)

Use the lower-level functions to compile a regex, search text or a single file, or walk a directory:

from rgapi import compile, search_path, search_text, walk

matcher = compile("TODO")
matcher.is_match("TODO")
matcher.finditer("TODO TODO")

walk(".")
search_text(matcher, "alpha\nTODO\nomega\n", path="memory.txt", context=1)
search_path(matcher, "src/lib.rs", display_path="src/lib.rs")

Install

pip install rgapi

File discovery

fd and walk return absolute pathlib.Path objects. Use them directly with .read_text(), .open(), .stat(), or other filesystem operations. Their collected results display names relative to root. Pass root as a str or Path, or as a list of them. The sync and async APIs expand ~ and accept ., ./, and paths containing ...

A list of roots, such as rg("TODO", ["src", "tests"]), works with every walk and search function. The roots are searched as one walk that returns one result list. timeout_ms and max_results apply to the whole walk. Result paths are relative to the common ancestor of the roots. For example, rows read src/app.py and tests/test_app.py. PathResults displays use the same relative paths. Filters such as include, path_re and skip_dir match these relative paths. A file under more than one root, such as src/app.py with roots [".", "src"], appears once.

Discovery uses the ignore crate with ripgrep's default filters. It reads .gitignore, .ignore, and .rgignore files. .rgignore takes precedence over .gitignore. Pass ignore=False to disable all ignore-file filtering, including .rgignore.

Hidden files are skipped unless hidden=True. Discovery returns symlinks themselves, including explicitly named roots and dangling links. Set follow_links=True to traverse their targets. Paths retain the symlink spelling. Use same_file_system=True to avoid crossing filesystem boundaries.

Traversal runs in parallel without guaranteed result order. Use sorted(...) when order matters.

fd adds filename filters to walk. Its pattern is a smart-case regex matched against each basename. Lowercase patterns match case-insensitively. A pattern containing uppercase letters is case-sensitive. Use path_re to match the slash-separated relative path instead.

include and exclude use case-sensitive glob syntax. glob= is an alias for include=. Patterns without / match names at any depth, so *.py matches src/app.py. Patterns containing / are root-relative. * stays within a path component; ** spans directories: src/* matches immediate children, whereas src/** also matches deeper descendants. Matching a directory with exclude prunes its entire subtree. Includes never prune traversal. Excludes always win, and includes do not override ignore rules.

Filter extensions with ext="py" or ext=["py", "rs"]. Extension and glob filters must both match. For example, include="src/*", ext="py" requires src/* and *.py, like combining rg -g with -t.

Set min_depth and max_depth to bound recursion. max_filesize skips files above a byte limit.

ls follows the shell command's listing conventions. It uses fd with max_depth=1, includes directories, disables ignore rules, and sorts by name. Set hidden=True for ls -a behaviour. All fd filters remain available.

fd_iter yields absolute Path objects as the walk finds them. It accepts every fd filter. Stopping iteration ends the walk. It does not accept timeout_ms.

path_re and skip_path_re filter slash-separated relative paths using regexes. They select returned paths or searched files without changing traversal. To skip entire subtrees, use skip_dir with a glob or skip_dir_re with a regex.

rg and rg_iter return structured SearchLine rows. They accept the same filters as fd: include, exclude, glob, ext, path_re, skip_path_re, skip_dir, skip_dir_re, min_depth, max_depth, max_filesize, follow_links, and same_file_system.

Search is case-sensitive by default, matching rg. Use smart_case=True for rg --smart-case behaviour. Use case_sensitive=False to force case-insensitive matching.

Each SearchLine has these fields:

kind         'match', 'before', 'after', or 'context'
path         path relative to root
line_number  1-based line number
lnhash       exhash-style `lineno|hash|` address for the line
line         line text without the trailing newline
matches      list of (start, end) byte offsets for match rows

rg, search_text, and search_path return SearchResults by default. This list subclass displays as rg-style multiline text in str() and notebook pretty output. rg_iter yields rows lazily.

SearchLine has a structured repr and an rg-style str. The string display truncates line to 180 characters with a trailing …. repr and asdict() retain the full line. SearchLine.asdict() returns the fields as a plain Python dictionary.

Pass lnhashs=True to rg or rg_iter to display hash addresses instead of line numbers. The line_number field remains available.

For other result forms, use rg(..., paths=True) to return unique matched paths or rg(..., count=True) to count match spans. paths and count cannot both be set.

^ and $ match at the start and end of each line. A line ends at \n or \r\n. $ also matches before a \r that has no \n after it. rg, rgstr, and nbrg without multiline=True raise ValueError for a pattern that contains a literal \n or \r.

Path results

fd, walk, and ls return PathResults, a list of absolute Path objects. So do rg and nbrg with paths=True, and their async equivalents. Indexing or iterating returns ordinary Paths:

for path in fd("src", ext="py"):
    text = path.read_text()
    size = path.stat().st_size

Use .name, .suffix, and .relative_to(root) for path components. .stat() follows symlinks; .lstat() inspects the link itself. .readlink() returns a link's target. Discovery preserves native filenames, including literal backslashes on Unix and non-UTF-8 names on filesystems that support them.

PathResults displays as an ls -l-style listing of at most rgapi.MAX_REPR rows. A final … N more line reports omitted rows. The listing uses .lstat() only on displayed rows. show_target=True adds symlink targets. str(res) returns one root-relative name per line. Slices retain the display root and completion status. list(res) returns the absolute Paths without the custom display.

Structured text and notebook search rows retain root-relative string labels in their path fields. Content searches still follow explicitly named root links. This differs from discovery's default of returning the link itself.

The Rust find and find_iter APIs return native PathBuf values relative to the root, or to the common ancestor of several roots in WalkOptions::roots. For an explicitly named file or unfollowed root link, the result is its basename.

Rust callers can set FindOptions::special_files to also discover FIFOs, sockets, and device nodes, for example to reject unsupported entries during archiving. This defaults to false; normal discovery returns regular files, directories when requested, and symlinks.

Limits and timeouts

Set timeout_ms on rg, fd, walk, or ls to stop at a deadline and return the results collected so far. Their async versions accept it too. Results report why the operation stopped:

  • stop_reason=None means the result is complete.
  • stop_reason="max_results" means max_results truncated the result.
  • stop_reason="timeout" means the deadline was reached.

complete is true exactly when stop_reason is None. count=True returns a plain integer without a completion flag. It cannot be combined with timeout_ms.

Context lines

before_context, after_context, and context correspond to rg -B, rg -A, and rg -C. Files containing NUL bytes or invalid UTF-8 are skipped.

Block summaries

rg(..., summary=True) returns one row per blank-line-delimited block instead of one row per matching line. Empty and whitespace-only lines delimit blocks. A block containing several matching lines appears once and keeps every matching SearchLine in matches.

rg("TODO", ".", summary=True, context=1, maxlen=120)

The result is BlockResults, a list of SearchBlock objects. Each block has path, block_index, start_line, end_line, start_lnhash, end_lnhash, kind, full source, and matches.

Matches display as path:start-end:source. Context displays as path:start-end-source. With lnhashs=True, the range uses copyable boundary addresses such as path:4|Py|,6|HD|:source. Newline runs display as . maxlen limits the displayed text without changing source or asdict().

In summary mode, before_context, after_context, and context count neighbouring blocks. max_results counts matching blocks and retains their context. summary=True cannot be combined with paths or count. It can be combined with lnhash for copyable block boundaries.

Notebooks

nbrg searches cell source in Jupyter .ipynb files and returns matching cells. Each result identifies the cell by its nbformat cell/message id, which stays stable across edits.

Plain rg searches escaped notebook JSON, including outputs and metadata. Its line numbers refer to that JSON file. nbrg searches the reconstructed cell source and identifies the cell you would edit.

from rgapi import nbrg

nbrg("read_csv", ".")                  # cells whose source matches, across all notebooks under "."
nbrg("read_csv", ".", cell_context=1)  # also include neighbouring cells as context

Notebook discovery, parsing, and matching run together in one parallel Rust pass. Matching uses rg's regex engine with the same case_sensitive and smart_case behaviour. nbrg accepts the discovery filters from fd and rg, including include, exclude, glob, hidden, max_depth, and skip_dir.

nbrg returns NbResults, a list of NbCell. Each NbCell has:

path         notebook path relative to root
cell_index   0-based position of the cell in the notebook
cell_id      nbformat cell id (falls back to the cell index for notebooks without ids)
cell_type    'code', 'markdown', or 'raw'
kind         'match' or 'context'
source       full cell source
matches      list of SearchLine rows for the matched lines within the cell

NbCell.asdict() returns these fields as a plain dictionary. Its matches field contains SearchLine dictionaries.

str() and pretty display show one line per cell. Matches use path:cell_id:source. Context uses path:cell_id-source. Newline runs display as .

A matching cell's display starts at its first matched line. Earlier lines are replaced by …[Ln], where n is the matched line's one-based number within the cell. A leading #| directive is retained, as in #| export…[L4]needle here.

maxlen limits displayed source and defaults to 120. The full source remains in source and asdict(). Each cell appears once even when it has multiple matches. All hits remain in matches.

cell_context=N includes the N cells before and after each match as kind="context" rows. Context cells are deduplicated within each notebook.

nbrg_iter yields NbCell rows as notebooks are parsed. For collected results, nbrg accepts these limits and result options:

  • max_results returns at most that many cells after sorting by path and cell index.
  • count=True returns the number of matching cells.
  • timeout_ms applies a deadline with the same stop_reason values as rg.

The parser reads only each cell's id, cell_type, and source. It skips outputs and metadata without loading embedded images or plots. search_nb(pattern, path, ...) searches a single notebook file in the same way.

rgapi-nbrg exposes notebook search without requiring a Python kernel:

rgapi-nbrg 'read_csv' .
rgapi-nbrg 'read_csv' . --cell-context 1
rgapi-nbrg 'read_csv' nbs tests
rgapi-nbrg 'read_csv' nbs --glob '*.ipynb' --max-results 20

Run rgapi-nbrg --help for its discovery, matching, and output options.

Async

fda, rga, and nbrga are async versions of fd, rg, and nbrg. The async generators fda_iter, rga_iter, and nbrga_iter yield rows as the search finds them. Async functions accept the same arguments and return the same types as their synchronous equivalents.

from rgapi import fda, rga, rga_iter

await fda(".", ext="py")
res = await rga("TODO", ".", timeout_ms=200)
if not res.complete: print(f"partial results: {res.stop_reason}")
async for row in rga_iter("TODO", "."): ...

Walking and searching use Rust threads, without asyncio.to_thread or the event loop's executor. A callback uses loop.call_soon_threadsafe to complete the awaited future or supply results to the generator's queue. The event loop remains unblocked, with normal contextvars behaviour.

Cancellation stops the Rust workers within about one row. This includes timeouts from asyncio.wait_for or asyncio.timeout. It also includes task cancellation, such as starlette cancelling a disconnected client's request.

Wrap an async iterator in contextlib.aclosing when leaving its loop early. break alone delays generator finalization until garbage collection. The context manager provides prompt cleanup:

async with aclosing(rga_iter("TODO", ".")) as it:
    async for row in it:
        if enough(row): break

Use streaming results for incremental display, such as sending batches to a browser as they arrive. Collected results with timeout_ms return what was found before the deadline. Use asyncio.wait_for when a timeout should raise instead.

Benchmarks

tools/bench.py compares the rg CLI with in-process rgapi. Run it against a release build. One run on this machine, using best time from seven repeats:

fixture rg rgapi
6 x 2 MB files, 2 matches 6.54 ms 1.44 ms
800 x 1.5 KB files, 2 matches 13.90 ms 10.94 ms
tiny dir, repeated 30x 5.92 ms 2.14 ms

Release files for rgapi 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for rgapi 0.2.0
File Size Uploaded
rgapi-0.2.0.tar.gz 60.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for rgapi 0.2.0
File
rgapi-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
rgapi-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
rgapi-0.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
rgapi-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
rgapi-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
rgapi-0.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
rgapi-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
rgapi-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
rgapi-0.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
rgapi-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
rgapi-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
rgapi-0.2.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 17.6 MB

Release files / rgapi-0.2.0.tar.gz

Download URL rgapi-0.2.0.tar.gz
Size 60.8 kB
Tags Source
SHA-256 checksum
How to use checksums
26b80b4b12de88c5a37009c4e218b8584cc437c61e2359b98898f4c8a571f669
BLAKE2b-256 checksum
How to use checksums
088ff220fbbbeaade3d4d16bb7e735ea805031b1c1ca0fb7caf55a78d5aeeb1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rgapi-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
46a5e6a3be6f7547b3b8578bd4a898c7f14542c8d0670ab9c3456000a7a99a08
BLAKE2b-256 checksum
How to use checksums
3ff5de9b93fd5a1d404c7e99ef3723d0528ce123a4df3f255550b6fece6cb023
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rgapi-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f63e4258298124eda083f3940b10728517fb6122ab7c8ef7a6d150388712324d
BLAKE2b-256 checksum
How to use checksums
84bc3c2b1078ee2539574ce747ce471d238870e5db5cdd71617a913784bdc366
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL rgapi-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
eb596b769c1ccbbdd8b65bd272481f9177d5ca45ec0c42b86b8fe0e8d6e71964
BLAKE2b-256 checksum
How to use checksums
c9e893bb4cc4feaa2cfb9454cac8f158f0e4b6126f57153dbd01f9c648c33efc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rgapi-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d8ef3d8bad311d519d69c79b252de56acbdeed0196e1964dadcb3f7372cbcdb0
BLAKE2b-256 checksum
How to use checksums
ec30fb04ea0d193241b6f3f9b9104c051079e0b1127e8ad3e0dba959855f0aaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rgapi-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
462be23195e0a2ac992355184e643455df131cfe0fb04caaee350153706fa669
BLAKE2b-256 checksum
How to use checksums
17e0f2d7015b569ca961ad83fec5d068cbaf87079a23146b1fa4197cb665e01d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL rgapi-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dcf43b4aad4c6225cfc2d04c21fda74a98f0f2eb7c8d129b552ac02dd6146a60
BLAKE2b-256 checksum
How to use checksums
e89ed31fe704dfcdab1d05ec8edf724104095f540575576e62bf16399e7c1cac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rgapi-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
63ea4506d048771dedd609f34703a84203433163f8372457544d4439d583ee98
BLAKE2b-256 checksum
How to use checksums
c751e77b163ded1cfdf6a84b13f3eaaa8395f02e5332feca2b01b1723b46bef1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rgapi-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
35c60cd6029c1a9cd060b574f18391fd0641748268d8067c602071fde90fc153
BLAKE2b-256 checksum
How to use checksums
ebda7382b3bdaad76344b974656a008f6ebb889db7d27788d7ce511961d8458d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL rgapi-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6917d98df17681d913f60a0e7fbbed3d01e3821e51be317472edcc49b16be4b1
BLAKE2b-256 checksum
How to use checksums
e6685b3e309957e2de6f0fbd88d3ae87866dc7ca3a287ec3cfbf631f72a75779
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rgapi-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5008bd333a5dd087681edd60531ab495f94bc8b412d3156dea047fe22565083b
BLAKE2b-256 checksum
How to use checksums
ed80361ee00770d0c0d26b2449ea174e199eeab0bcf1ceb301cb7f8f17631a59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rgapi-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
79635fe677f037d7cd3dd8f6737927463da3a6e990fd9825b318bac17c83ed34
BLAKE2b-256 checksum
How to use checksums
e6ee2caa8310ac639c1f8319376cad7b2560cf2e2e80db8c5931399c2462fd26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / rgapi-0.2.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL rgapi-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9484370c585e3abef022e033308355eeda618acb8318ff22d60ae9949b919892
BLAKE2b-256 checksum
How to use checksums
421ca0b765b423ac43b7a51ae10817f0daee0b45d1f8b03f0380c31ece42617c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.0 This release

13 release files

0.1.21

9 release files

0.1.20

9 release files

0.1.19

9 release files

0.1.18

9 release files

0.1.17

9 release files

0.1.16

9 release files

0.1.15

9 release files

0.1.14

9 release files

0.1.11

9 release files

0.1.10

9 release files

0.1.9

9 release files

0.1.8

9 release files

0.1.6

9 release files

0.1.5

9 release files

0.1.4

9 release files

0.1.2

9 release files

0.1.1

9 release files

0.1.0

9 release 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