Skip to main content

Python bindings for Google's robots.txt parser library

Project description

robotstxt

Python bindings for Google's robots.txt parser library - high-performance, RFC 9309 compliant.

Installation

pip install fast-robotstxt

Pre-built wheels are available for:

  • Linux: x86_64, aarch64
  • macOS: x86_64, arm64 (Apple Silicon)
  • Windows: AMD64

Python 3.8 - 3.13 supported.

Build from source

If you need to build from source:

git clone https://github.com/nzrsky/robotstxt.git
cd robotstxt/bindings/python
pip install .

Usage

from robotstxt import RobotsMatcher

# Create a matcher
matcher = RobotsMatcher()

robots_txt = """
User-agent: *
Disallow: /admin/
Allow: /admin/public/
Crawl-delay: 2.5

User-agent: Googlebot
Allow: /
"""

# Check if URL is allowed
allowed = matcher.is_allowed(robots_txt, "Bingbot", "https://example.com/admin/secret")
print(f"Access: {'allowed' if allowed else 'disallowed'}")

# Get crawl delay
if matcher.crawl_delay is not None:
    print(f"Crawl delay: {matcher.crawl_delay}s")

# Get request rate
if matcher.request_rate is not None:
    requests, seconds = matcher.request_rate
    print(f"Request rate: {requests} per {seconds}s")

# Check Content-Signal (AI preferences)
signal = matcher.content_signal
if signal:
    print(f"AI training allowed: {signal['ai_train']}")

API Reference

RobotsMatcher

Main class for matching URLs against robots.txt.

Methods

  • is_allowed(robots_txt, user_agent, url) -> bool Check if URL is allowed for a single user-agent.

  • is_allowed_multi(robots_txt, user_agents, url) -> bool Check if URL is allowed for multiple user-agents.

Properties

  • matching_line: int - Line number that matched (0 if no match)
  • ever_seen_specific_agent: bool - True if specific user-agent was found
  • crawl_delay: Optional[float] - Crawl delay in seconds
  • request_rate: Optional[Tuple[int, int]] - (requests, seconds) tuple
  • content_signal: Optional[dict] - AI content preferences
  • allows_ai_train: bool - True if AI training is allowed
  • allows_ai_input: bool - True if AI input is allowed
  • allows_search: bool - True if search indexing is allowed

Functions

  • get_version() -> str - Get library version
  • is_valid_user_agent(user_agent) -> bool - Validate user-agent string

Context Manager

with RobotsMatcher() as matcher:
    allowed = matcher.is_allowed(robots_txt, "Googlebot", url)

License

Apache License 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fast_robotstxt-1.1.0-cp313-cp313-win_amd64.whl (738.0 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_robotstxt-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (700.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fast_robotstxt-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (600.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fast_robotstxt-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (558.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_robotstxt-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl (560.2 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

fast_robotstxt-1.1.0-cp312-cp312-win_amd64.whl (738.0 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_robotstxt-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (700.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fast_robotstxt-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (600.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fast_robotstxt-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (558.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_robotstxt-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl (560.2 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

fast_robotstxt-1.1.0-cp311-cp311-win_amd64.whl (738.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_robotstxt-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (700.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fast_robotstxt-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (600.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fast_robotstxt-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (558.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_robotstxt-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl (560.2 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

fast_robotstxt-1.1.0-cp310-cp310-win_amd64.whl (738.0 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_robotstxt-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (700.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fast_robotstxt-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (600.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fast_robotstxt-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (558.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fast_robotstxt-1.1.0-cp310-cp310-macosx_10_15_x86_64.whl (560.2 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

fast_robotstxt-1.1.0-cp39-cp39-win_amd64.whl (738.1 kB view details)

Uploaded CPython 3.9Windows x86-64

fast_robotstxt-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (700.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fast_robotstxt-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (600.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fast_robotstxt-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (558.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fast_robotstxt-1.1.0-cp39-cp39-macosx_10_15_x86_64.whl (560.2 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

fast_robotstxt-1.1.0-cp38-cp38-win_amd64.whl (738.1 kB view details)

Uploaded CPython 3.8Windows x86-64

fast_robotstxt-1.1.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (700.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

fast_robotstxt-1.1.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (600.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

fast_robotstxt-1.1.0-cp38-cp38-macosx_11_0_arm64.whl (558.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fast_robotstxt-1.1.0-cp38-cp38-macosx_10_15_x86_64.whl (560.2 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

Details for the file fast_robotstxt-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1a479c45b178efad0e85a0457a8a3f3040256218e979f1367cf761aa0f67ac5d
MD5 c7256f69cf5c47992d3f89062a180909
BLAKE2b-256 1e1e51983b61c5063f1c302c67c5ae6fee3dbffcfb88fef4f2921cac79b891dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e052d4492022ff398d963ffc7c569163fbd1f5f6692af1e49468a9b7b45ba12f
MD5 5136519dc8e0cdbc4318571a7f456a17
BLAKE2b-256 476acbca1a18b5132426dd6d834661d17f67614aadf814bbd7ee5f27a7c0c106

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74c38c1542fc7aeb1a37010e4dac76a7b28c558c733cb96b306be72725b1d183
MD5 48473801246ca0709ee5eb20e9588a0b
BLAKE2b-256 dd1d5ff75e01fd841ae4ffe8414e35670f41e2a7a3c9941ca508ce351dd2b9c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a38cf40910e2f4b808eb1fcff7b5bcbcd0c40c45da092c123bf3900ba287f370
MD5 c2889c44e70bb28852153edb08767ef8
BLAKE2b-256 be075ffc289b7cc04ac0a902b5ec5ae52ed765b9e187ef416d729d088c18def9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 531b37db07d0fd0463d25999d9124de52ca2e88d5ec8f727bfcebeb70ab87060
MD5 b1f96dfbb2c6d5bd1d513cc22bf1b85f
BLAKE2b-256 ee55d176e9af1207c9d5c28ff896950e1b8f37c91a2375de8ffa2582ee74db0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 022beb84a6c4f85c2ce6fb0fa61c6a76e033cda44370742014abd9a99054c77a
MD5 69a24be5e1ba3b4001d2b98f50dd69bc
BLAKE2b-256 381631ba1b4154466f6d8fb2eb93309bf7375781e3c0a07ea9a9cf9438e221ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b370a4c933bfbdc5bd312559d197dd73fe87fec4a814efa836fccd3aeb1fba30
MD5 76dbe37ee156274c36732bfbb5b56fc4
BLAKE2b-256 cc7e728174ff53733532b8824dc51f3f0c60f80ad432dc79e1cac319e386331c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e81ba5e504629d479b0b97990616c80f9bd624d1408fb662b680a8abefef5b85
MD5 3734a46f62b1820c1a291d70434433b3
BLAKE2b-256 2f412bef162c92ba4512d9e6b05ee3e064fd73a71822fdfca8882ed5d5d20cd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15fb0832f7040a52a09412e2a0fbfca2db5cd8af8d9f4c891c2554a3a1c5738f
MD5 449d9f283b3bf06bb378967b6b6a4f0f
BLAKE2b-256 cf773006636a5b0f8e8f0c6e834e6771ccdb07171a4d42f0bb677c2035ac16fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cdd412ebf56e32b13afd091e27ade1797ceb28687d3d73b4562b44b9ee785056
MD5 c928df4484870507615c39dadde3d104
BLAKE2b-256 f79f071e9ba720094ef5638caaef7f2ac0beed9d2b78afde645f101034bdeba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ad6d45855f6dca43215126f58bb3e6e375b25fc479f7dcb1a7a97204e58ad107
MD5 ec42136f1eb4f9714e890947faf9ec64
BLAKE2b-256 2cc6ff67cbb49102087d40b1c43accd6a62f68e8eb1d5795a2020dce478cbbca

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11a6c66b7c0b82263ead1fbc328631cf0a16a2fc8241307533368bc638d76260
MD5 057bf814b6b614c81c600828069e06d4
BLAKE2b-256 1d1cd0fe3e0baf2616fc8b3e040d006b78d0e7b764fd81944484c962c2420362

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f51638e4ac585af6c8674e40923dfa8e4d22a62b08d0818e6eeeca790b4f569b
MD5 921a311f13318719b5a5720f6e772a93
BLAKE2b-256 4fe8507582f78527e79231a2eb10560ae016563a0c316a2ccb87a46c111814c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67e2eabb741cb2c4c04ba00af41f201f1bcff217b33085e8a7eed7b4b5ce6f9b
MD5 6a8664c3335edc810a4797f25a51bd0e
BLAKE2b-256 de4c6fe5575d6da9253fb30448c0110b646a5393d32f73bb74bb39b765afe3b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 08d105f2efaec78e0909886fd78ae2616b7093eda3fd9d9dc40cbc57702cba14
MD5 8b3d949e3ef63827a71e754407204994
BLAKE2b-256 75e49e95467d7a303c575b3ca551bc5a02c5aa64a495f93a62c0f7b6f75ac326

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 53a7ee95e3420531e2aed5a541715bba2313f952cf9f96141361db0a671adc5b
MD5 06224ab702ec7a0471ed74dc43d73974
BLAKE2b-256 5f1240e38520be68c4ed714411a85830acf20963858fbf559ef51faaee633b86

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1127ad30f603f42314a585e959586585237dc47b59ac5d66db309198dcc1a71
MD5 da2b936dd6dad057b2933a8dc5789e02
BLAKE2b-256 2b4886a866781ee87865cf80c5c987d808d412dddf10f2696f48b653eaa9f936

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10911fd1183adadb1e0c15239b1e000779a292d5461a6b5e6aa0aea7252d06aa
MD5 69544b37926943b39e29ebb1564ca9a9
BLAKE2b-256 51339dc518f302ff375c8bbc614c0754420ced82f613140782c7c2af8d0f60b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29cc21fdae4adb8beedf1c734ebaaa6d5062514c89338643a8a7bfc03662adcf
MD5 a03cc40108fff179a80fa7bebeead798
BLAKE2b-256 02e290a4b41d295841590101d10637b30a99c295820ac9049ef46109a549a82e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 497b966022b794c7146171d41c508133b1512d725766e84c453774439d6a10d3
MD5 4994ba7ddf101daf66a2224e8fa96410
BLAKE2b-256 23de2224470e0a6476be941d8a0557288ca789da853ba28857f93ea707e63dc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fa40c88c54aa51b7c7e4dcd1a445b21006608741fe70db4b38cef89409a8f6b1
MD5 5ff2ea904c5ac8b9729ee9fca7e5a9b2
BLAKE2b-256 911c390c67822f9de7e845a73a3077f0488312a12b428e1ae7d722b64397d953

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp39-cp39-win_amd64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e2dde13b219e5ff788bf8309e375b57f15d1feaaf0da6ee1c26dc3361875d5c
MD5 c8f59b257e7e386925d927355a66eb6c
BLAKE2b-256 de3f6c62e2a27a9bb7c4a8acb0be4bf52185ceffb9fe9c6d85cc38eb49c41751

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 716aeaf97218789359901f8edf6b40f513900b440ffcbac399a59d40ea4cea9f
MD5 cf2c3f4af947c056f5927d05af2d7b7a
BLAKE2b-256 18cd4670027e764eac93fb62f97bb98939a451b7ddd1f670d5795898ee9fd4bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5e4c500273da03b070a83dc0047c93db19b2a1c70ac29728c66843b7e856dcd
MD5 1de4577063e88c5eb993b048a783a8cc
BLAKE2b-256 b65c35a99ae6222938775858cdef02592fafdf52b92a2a6d4844a36f3d7fa562

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 51195440d134eace71ca1df2c168851d9353ded5cfd72e6720d882e65ce4c23e
MD5 3f0463184fe728c5f93cd50c9eb5a7f7
BLAKE2b-256 07a0b9d38f8c438fa80c357fca0b6a312c5e4866b5add87681691addf42ffe66

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 977589e1bacea40858668645cea54cf78ff811f4be6ba09542ed915bd990ebdb
MD5 e19f9ae3ae0b7ff83e924059c842585c
BLAKE2b-256 bfc1c3090d606b67e73927cbcbfef6195ecd9cfc42103381c9e7c9ce30fe62b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp38-cp38-win_amd64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62c99f017f93fef8b55d9a594b70efc08183d02d0cfaea00b7bc6c6cbcf44eee
MD5 03b680c9026b6332596cbe3e6d9fe05f
BLAKE2b-256 329e8e2dc643bd67425f5d33f7fcdf09700a8e814380dd6e54d2905d985f421c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82c82058338104f574452bbac99910e84695e1ced082e5c68fe876fe0810bca7
MD5 662be52ab7d54685e01345edae4c9bd6
BLAKE2b-256 9d21ffb83f5092a77bcef138ec520752d589616a6fc7aeb30bbf9443719cb113

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b85c9b14e0712e2bd89b8e371f8837d369efad59e0cdd5c7856362098b30a2d
MD5 424d7da409e6e154fa02becb28012e7e
BLAKE2b-256 393cb2253fc9ecadf74e9006c7eabef6da525960b3f05f6dae71d37ac2a346cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_robotstxt-1.1.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fast_robotstxt-1.1.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 32263f5f60e6bcf5cde6700331a0cc7b2703e3d334a67b0eff8ea17cb48efabb
MD5 c5ca09839f9a87ac47c16b4a495060c1
BLAKE2b-256 ecdb74fe9358fcbc71514f42611d2c148ea0d2f2eac4793595cf37bab1f745b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_robotstxt-1.1.0-cp38-cp38-macosx_10_15_x86_64.whl:

Publisher: publish-python.yml on nzrsky/robotstxt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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