jwm.robotstxt


Namejwm.robotstxt JSON
Version 1.0.8 PyPI version JSON
download
home_pageNone
SummaryProvides python access to Googles parser for robot.txt files as used by their GoogleBot webscraper.
upload_time2024-07-22 11:17:09
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT License Copyright (c) 2024 Joel William Morley Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords robotstxt wrapper google parser
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![build status](https://github.com/jwmorley73/jwm.robotstxt/actions/workflows/release.yaml/badge.svg)](https://github.com/jwmorley73/jwm.robotstxt/actions/workflows/release.yaml)

# jwm.robotstxt

## Python Wrapper for Googles Robotstxt Parser

Provides python access to Googles parser for `robot.txt` files as used by their `GoogleBot` webscraper. 

Websites may provide an optional `robots.txt` file in their domains root to govern the access and behavior of web scrapers. One of the most famous webscrapers `GoogleBot` is responsible for promoting this standard and sites interested in SEO will closely conform to `GoogleBot` behavior.

All credit for the parser goes to the Google team who created,  open sourced and promoted it.

> SEO (Search Engine Optimization): The process of modifying a websites content or metadata to boost rankings in search engines page indexes. Higher rankings lead to higher positions in user searches leading to more visitors. For further details, see the [SEO wikipedia page](https://en.wikipedia.org/wiki/Search_engine_optimization).

## Usage

Basic usage using the `RobotsMatcher` class provided by Google.
```python
import jwm.robotstxt.googlebot

robotstxt = """
user-agent: GoodBot
allowed: /path
"""

matcher = jwm.robotstxt.googlebot.RobotsMatcher()
assert matcher.AllowedByRobots(robotstxt, ("GoodBot",), "/path")
```

Check out the [documentation](https://jwmorley73.github.io/jwm.robotstxt/) for further details. For more use cases, see the test cases for [jwm.robotstxt](https://github.com/jwmorley73/jwm.robotstxt/blob/7a4bb603e6abedf39805f76c5999cedcf1f0ed07/tests/jwm/robotstxt/test_googlebot.py) and [robotstxt](https://github.com/google/robotstxt/blob/a732377373e8bbee9f720b52020e2a8d5dd19cf8/robots_test.cc).

## Installation

Install from Pypi under the `jwm.robotstxt` distribution.

```shell
pip install jwm.robotstxt
```

Import into your program through the `jwm.robotstxt.googlebot` package.

```python
import jwm.robotstxt.googlebot
```

### Virtual Environment

It is highly recommended to install python projects into a virtual environment, see [PEP405](https://peps.python.org/pep-0405/) for motivations.

Create a virtual environment in the `.venv` directory.

```shell
python3 -m venv ./.venv
```

Activate with the correct command for your system.
```shell
# Linux/MacOS
. ./.venv/bin/activate
```

```shell
# Windows
.\.venv\Scripts\activate
```

### Installing from source

Make sure you have cloned the repository **and** its submodules.

```shell
git clone --recurse-submodules https://github.com/jwmorley73/jwm.robotstxt.git
```

Install the project using pip. This will build the required `robotstxt` static library files and link them into the produced python package. 

```shell
pip install .
```

If you want to include the developer tooling, add the `dev` optional dependencies.

```shell
pip install .[dev]
```

## Known Issues

 - Windows 32 bit is not supported.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "jwm.robotstxt",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "robotstxt, wrapper, google, parser",
    "author": null,
    "author_email": "Joel Morley <jwmorley73@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/ea/b0/df1f6e2485dc7ecbc1a71433d2f28e9541dce69e914c0b0bc5fa9fcbd98f/jwm_robotstxt-1.0.8.tar.gz",
    "platform": null,
    "description": "[![build status](https://github.com/jwmorley73/jwm.robotstxt/actions/workflows/release.yaml/badge.svg)](https://github.com/jwmorley73/jwm.robotstxt/actions/workflows/release.yaml)\n\n# jwm.robotstxt\n\n## Python Wrapper for Googles Robotstxt Parser\n\nProvides python access to Googles parser for `robot.txt` files as used by their `GoogleBot` webscraper. \n\nWebsites may provide an optional `robots.txt` file in their domains root to govern the access and behavior of web scrapers. One of the most famous webscrapers `GoogleBot` is responsible for promoting this standard and sites interested in SEO will closely conform to `GoogleBot` behavior.\n\nAll credit for the parser goes to the Google team who created,  open sourced and promoted it.\n\n> SEO (Search Engine Optimization): The process of modifying a websites content or metadata to boost rankings in search engines page indexes. Higher rankings lead to higher positions in user searches leading to more visitors. For further details, see the [SEO wikipedia page](https://en.wikipedia.org/wiki/Search_engine_optimization).\n\n## Usage\n\nBasic usage using the `RobotsMatcher` class provided by Google.\n```python\nimport jwm.robotstxt.googlebot\n\nrobotstxt = \"\"\"\nuser-agent: GoodBot\nallowed: /path\n\"\"\"\n\nmatcher = jwm.robotstxt.googlebot.RobotsMatcher()\nassert matcher.AllowedByRobots(robotstxt, (\"GoodBot\",), \"/path\")\n```\n\nCheck out the [documentation](https://jwmorley73.github.io/jwm.robotstxt/) for further details. For more use cases, see the test cases for [jwm.robotstxt](https://github.com/jwmorley73/jwm.robotstxt/blob/7a4bb603e6abedf39805f76c5999cedcf1f0ed07/tests/jwm/robotstxt/test_googlebot.py) and [robotstxt](https://github.com/google/robotstxt/blob/a732377373e8bbee9f720b52020e2a8d5dd19cf8/robots_test.cc).\n\n## Installation\n\nInstall from Pypi under the `jwm.robotstxt` distribution.\n\n```shell\npip install jwm.robotstxt\n```\n\nImport into your program through the `jwm.robotstxt.googlebot` package.\n\n```python\nimport jwm.robotstxt.googlebot\n```\n\n### Virtual Environment\n\nIt is highly recommended to install python projects into a virtual environment, see [PEP405](https://peps.python.org/pep-0405/) for motivations.\n\nCreate a virtual environment in the `.venv` directory.\n\n```shell\npython3 -m venv ./.venv\n```\n\nActivate with the correct command for your system.\n```shell\n# Linux/MacOS\n. ./.venv/bin/activate\n```\n\n```shell\n# Windows\n.\\.venv\\Scripts\\activate\n```\n\n### Installing from source\n\nMake sure you have cloned the repository **and** its submodules.\n\n```shell\ngit clone --recurse-submodules https://github.com/jwmorley73/jwm.robotstxt.git\n```\n\nInstall the project using pip. This will build the required `robotstxt` static library files and link them into the produced python package. \n\n```shell\npip install .\n```\n\nIf you want to include the developer tooling, add the `dev` optional dependencies.\n\n```shell\npip install .[dev]\n```\n\n## Known Issues\n\n - Windows 32 bit is not supported.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Joel William Morley  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Provides python access to Googles parser for robot.txt files as used by their GoogleBot webscraper.",
    "version": "1.0.8",
    "project_urls": {
        "Documentation": "https://jwmorley73.github.io/jwm.robotstxt/",
        "Homepage": "https://github.com/jwmorley73/jwm.robotstxt"
    },
    "split_keywords": [
        "robotstxt",
        " wrapper",
        " google",
        " parser"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9ce71ff6e6f18bcedbaa34c588f5ceac338ff290eae43d4dea4402d84b2d75c",
                "md5": "d297b9e646fb9d6098e1d2eb3263feba",
                "sha256": "7755241618a8383168e0e8b087867e5d321d6d63745f37ec375ff98af1d2b41c"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d297b9e646fb9d6098e1d2eb3263feba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 132037,
            "upload_time": "2024-07-22T11:16:29",
            "upload_time_iso_8601": "2024-07-22T11:16:29.839216Z",
            "url": "https://files.pythonhosted.org/packages/b9/ce/71ff6e6f18bcedbaa34c588f5ceac338ff290eae43d4dea4402d84b2d75c/jwm.robotstxt-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ae6637da050726aa959f73c66cb23fff2d0f1e3be843f25570234bd7b452793",
                "md5": "822e19eeb786e21f5fa8b545e80ca519",
                "sha256": "00670b22e10ef0618d32b5451337ce07aaeea127e4013cba3f35ab12c2c284c0"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "822e19eeb786e21f5fa8b545e80ca519",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 131495,
            "upload_time": "2024-07-22T11:16:30",
            "upload_time_iso_8601": "2024-07-22T11:16:30.992084Z",
            "url": "https://files.pythonhosted.org/packages/0a/e6/637da050726aa959f73c66cb23fff2d0f1e3be843f25570234bd7b452793/jwm.robotstxt-1.0.8-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d61960d00c69486b4f2c136c42ce7d63077a8d4dd0ad5c462f66ae98c48a1816",
                "md5": "420ab2f2b898d961ce1bab5d56a6ed0d",
                "sha256": "2865468e761207a01bad5ddf39b7a352a9d273f1cb40ca7e7d3428c133f1ca98"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "420ab2f2b898d961ce1bab5d56a6ed0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 185058,
            "upload_time": "2024-07-22T11:16:32",
            "upload_time_iso_8601": "2024-07-22T11:16:32.242077Z",
            "url": "https://files.pythonhosted.org/packages/d6/19/60d00c69486b4f2c136c42ce7d63077a8d4dd0ad5c462f66ae98c48a1816/jwm.robotstxt-1.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c3c09b26078c093e9f7ca0ad566848aeeae806108a64c883e3f4e46c89d56e8",
                "md5": "2793c6c6e7a5d70f519c0edefede7125",
                "sha256": "5fe1c5bc6c2c92999c677d328661c6bf4c64a49ad607d9b5410551ba33fd967c"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2793c6c6e7a5d70f519c0edefede7125",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 177392,
            "upload_time": "2024-07-22T11:16:33",
            "upload_time_iso_8601": "2024-07-22T11:16:33.690569Z",
            "url": "https://files.pythonhosted.org/packages/9c/3c/09b26078c093e9f7ca0ad566848aeeae806108a64c883e3f4e46c89d56e8/jwm.robotstxt-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8581a2f2b3ce1338c917fbb357cd16e70b59f0cc3fa9ac32fb60b8952dd33f2",
                "md5": "9cc2fdc5d61dc0e1f4f125766673ce71",
                "sha256": "d8b8f70770313e4a8e720cc9e4853368c80bff4824187b9039cb886bc987e4d6"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9cc2fdc5d61dc0e1f4f125766673ce71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1249061,
            "upload_time": "2024-07-22T11:16:34",
            "upload_time_iso_8601": "2024-07-22T11:16:34.854815Z",
            "url": "https://files.pythonhosted.org/packages/e8/58/1a2f2b3ce1338c917fbb357cd16e70b59f0cc3fa9ac32fb60b8952dd33f2/jwm.robotstxt-1.0.8-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06368b0cfd22da8ccc7d8e93135203e8cae98d602e7dee10ee1dcc0feda6b095",
                "md5": "50faa73e41c8b9ec6ad2b43ec0cedf06",
                "sha256": "667aebf23c368ae46a4c485b4efb27f6a7f01bc549efa3391f997e4a6e86681d"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50faa73e41c8b9ec6ad2b43ec0cedf06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1145949,
            "upload_time": "2024-07-22T11:16:36",
            "upload_time_iso_8601": "2024-07-22T11:16:36.489237Z",
            "url": "https://files.pythonhosted.org/packages/06/36/8b0cfd22da8ccc7d8e93135203e8cae98d602e7dee10ee1dcc0feda6b095/jwm.robotstxt-1.0.8-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36830866de76d51fa57f5de91ecaca9f5b0a745a757f832c349c0119867e4aff",
                "md5": "7afaf367cb02172bbcfd7f12fee99b1c",
                "sha256": "eff9ca277c9a9c87418a92c168b6a3a07be6649cc27d4fc7169ac676216ae188"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7afaf367cb02172bbcfd7f12fee99b1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 96470,
            "upload_time": "2024-07-22T11:16:37",
            "upload_time_iso_8601": "2024-07-22T11:16:37.846265Z",
            "url": "https://files.pythonhosted.org/packages/36/83/0866de76d51fa57f5de91ecaca9f5b0a745a757f832c349c0119867e4aff/jwm.robotstxt-1.0.8-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e7daf115c4f027868508ab6697984dadd699bfb744c8dcb04782a553715e9d6",
                "md5": "7481d6b5de1da67e0b9c12cc8f69f51d",
                "sha256": "45e2f8b80798b1b3b49ebe65d75a52255005b4dd6f3a1bdefb467c3b4ec12485"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7481d6b5de1da67e0b9c12cc8f69f51d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 133265,
            "upload_time": "2024-07-22T11:16:41",
            "upload_time_iso_8601": "2024-07-22T11:16:41.805925Z",
            "url": "https://files.pythonhosted.org/packages/1e/7d/af115c4f027868508ab6697984dadd699bfb744c8dcb04782a553715e9d6/jwm.robotstxt-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9db640b862f4a5a8e7eddf137d3c165eb94bb4f064cd703c3c552bb5561937b7",
                "md5": "eff1ff235cd50bd7c25626de51e76859",
                "sha256": "fb46b4cb0c5054ca0af1d530cf9cedc0d183a50f48a51b7401d84f05b7c70a4f"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eff1ff235cd50bd7c25626de51e76859",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 132796,
            "upload_time": "2024-07-22T11:16:43",
            "upload_time_iso_8601": "2024-07-22T11:16:43.212602Z",
            "url": "https://files.pythonhosted.org/packages/9d/b6/40b862f4a5a8e7eddf137d3c165eb94bb4f064cd703c3c552bb5561937b7/jwm.robotstxt-1.0.8-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41dfddad5ae7d93f937330739e111443b58376df4d200b2d06ff6ee0d3bfd387",
                "md5": "be85bb1fa84ed81e1be4b1aa53e3ebcf",
                "sha256": "286c1f98d7a7233330c78bfe4a812dd1b3092d190f3b0552888806b9df02ba9f"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "be85bb1fa84ed81e1be4b1aa53e3ebcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 186334,
            "upload_time": "2024-07-22T11:16:44",
            "upload_time_iso_8601": "2024-07-22T11:16:44.583968Z",
            "url": "https://files.pythonhosted.org/packages/41/df/ddad5ae7d93f937330739e111443b58376df4d200b2d06ff6ee0d3bfd387/jwm.robotstxt-1.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0160163e6ced7f399caf8f04581f82eb13d5c7ceb42a67522e2ca1831e2f6132",
                "md5": "5cb4175d7e9810990cfc617acf53fc96",
                "sha256": "20cb2c5a0268ffdb274882a38ebd95d778cc4d7c1629dce7993cc2edc2dc7a3c"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5cb4175d7e9810990cfc617acf53fc96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 178898,
            "upload_time": "2024-07-22T11:16:46",
            "upload_time_iso_8601": "2024-07-22T11:16:46.059964Z",
            "url": "https://files.pythonhosted.org/packages/01/60/163e6ced7f399caf8f04581f82eb13d5c7ceb42a67522e2ca1831e2f6132/jwm.robotstxt-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "189144cbbca10762a231739c40ebc378a6de0c3c6cbf9724d6027441f270942d",
                "md5": "3d5c9a619de98f6a622980f9c5d1e718",
                "sha256": "197a69e03155c5a49e4fbcf0927f675046703c1fddda16932d0d0d623b6c63be"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3d5c9a619de98f6a622980f9c5d1e718",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1249681,
            "upload_time": "2024-07-22T11:16:47",
            "upload_time_iso_8601": "2024-07-22T11:16:47.270827Z",
            "url": "https://files.pythonhosted.org/packages/18/91/44cbbca10762a231739c40ebc378a6de0c3c6cbf9724d6027441f270942d/jwm.robotstxt-1.0.8-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40de061070c2dc5bb5c6ca8662d6792e6a8d872beed1f07ea8906bc3f8590c9e",
                "md5": "90045a073a1d095faa1481d46c2ec842",
                "sha256": "503aacb5997cc6e008954495d19f29966676e255d818555b36d62b8035e4b8de"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90045a073a1d095faa1481d46c2ec842",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1147102,
            "upload_time": "2024-07-22T11:16:48",
            "upload_time_iso_8601": "2024-07-22T11:16:48.922810Z",
            "url": "https://files.pythonhosted.org/packages/40/de/061070c2dc5bb5c6ca8662d6792e6a8d872beed1f07ea8906bc3f8590c9e/jwm.robotstxt-1.0.8-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28b0937b63458d74cc58750c4a8c284ccb994795ced9f4a3531bbf2c2da98086",
                "md5": "1fd245bb31787eabe7055774f891b72a",
                "sha256": "f4dc88b93a205acaa40bf14a82842bb7c0b7adee1eb9e1f480248300c84d318f"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1fd245bb31787eabe7055774f891b72a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 97476,
            "upload_time": "2024-07-22T11:16:50",
            "upload_time_iso_8601": "2024-07-22T11:16:50.355535Z",
            "url": "https://files.pythonhosted.org/packages/28/b0/937b63458d74cc58750c4a8c284ccb994795ced9f4a3531bbf2c2da98086/jwm.robotstxt-1.0.8-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ecdb65bfe15d7b90d71be02b4614b29b58daa5a647733b9ea6dae61c855f208",
                "md5": "bb5721ef6071ac4e60aefebb42a5c42e",
                "sha256": "0b4d03545cc859d468869ee8c47f3abe39a52827e06094c7bb95b64fcaefea5d"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb5721ef6071ac4e60aefebb42a5c42e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 133064,
            "upload_time": "2024-07-22T11:16:51",
            "upload_time_iso_8601": "2024-07-22T11:16:51.705780Z",
            "url": "https://files.pythonhosted.org/packages/0e/cd/b65bfe15d7b90d71be02b4614b29b58daa5a647733b9ea6dae61c855f208/jwm.robotstxt-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "293ab047e659433229f4bfc109fe3a97a7fb5cec3935bde66a37367e2988d16a",
                "md5": "fb031b56f822de229b128cd5ecef5aad",
                "sha256": "488de06e3db2e35f689a83882fc90cdfe882dbda03904cd0ad83b15f945790f8"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fb031b56f822de229b128cd5ecef5aad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 132264,
            "upload_time": "2024-07-22T11:16:55",
            "upload_time_iso_8601": "2024-07-22T11:16:55.079010Z",
            "url": "https://files.pythonhosted.org/packages/29/3a/b047e659433229f4bfc109fe3a97a7fb5cec3935bde66a37367e2988d16a/jwm.robotstxt-1.0.8-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fd45506e5965ac1e9f2b4631f1aae5e49c39afc383d42ec2ee4f1e8131af76f",
                "md5": "36bbd65305463a36ee28c71971e031d0",
                "sha256": "f706220e6be9d8c20d2c4fc3ead1f1e5017b30f56f067bdc54465bc58c18a39d"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "36bbd65305463a36ee28c71971e031d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 186145,
            "upload_time": "2024-07-22T11:16:56",
            "upload_time_iso_8601": "2024-07-22T11:16:56.235696Z",
            "url": "https://files.pythonhosted.org/packages/3f/d4/5506e5965ac1e9f2b4631f1aae5e49c39afc383d42ec2ee4f1e8131af76f/jwm.robotstxt-1.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f40cd35d8335ab57cead04ea5285d35e15421c91c32352bd2986535c5399529",
                "md5": "9a53a688e6c8415048503cbaefdb5aac",
                "sha256": "1d8de02962c51b7e66cb2e35dd7e185083426f1f4a8c89f452e279d8be236a09"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a53a688e6c8415048503cbaefdb5aac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 178351,
            "upload_time": "2024-07-22T11:16:57",
            "upload_time_iso_8601": "2024-07-22T11:16:57.738840Z",
            "url": "https://files.pythonhosted.org/packages/0f/40/cd35d8335ab57cead04ea5285d35e15421c91c32352bd2986535c5399529/jwm.robotstxt-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01d480c4d2cfead7e8af47ddba9ebac5f417bc38ac20d8ff4c83345703fe0df2",
                "md5": "37d0628a0a4c2600e7ca8702c03ed930",
                "sha256": "8348e45299bdeb572218d1788e01a2384ddbf2683881d9c09329e3bab5d12c86"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "37d0628a0a4c2600e7ca8702c03ed930",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1249683,
            "upload_time": "2024-07-22T11:16:58",
            "upload_time_iso_8601": "2024-07-22T11:16:58.828844Z",
            "url": "https://files.pythonhosted.org/packages/01/d4/80c4d2cfead7e8af47ddba9ebac5f417bc38ac20d8ff4c83345703fe0df2/jwm.robotstxt-1.0.8-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "512886e1b63e6e9ffc900ae1b47ea3b0a958dd73dffc10af5a358413f96a7fe5",
                "md5": "00294ff89e68b8cbfd4bb2a33d8e6a21",
                "sha256": "b6174a41258546c4de2427d68960459c31eb3914e4b26bb5fdd4ae6c33894ffc"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00294ff89e68b8cbfd4bb2a33d8e6a21",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1147758,
            "upload_time": "2024-07-22T11:17:00",
            "upload_time_iso_8601": "2024-07-22T11:17:00.300085Z",
            "url": "https://files.pythonhosted.org/packages/51/28/86e1b63e6e9ffc900ae1b47ea3b0a958dd73dffc10af5a358413f96a7fe5/jwm.robotstxt-1.0.8-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f44d8e20c88e70e5a99995dfb8467360d26b97ea61583277f2eae02403a1a699",
                "md5": "d8ed95ebe4e0d7ea11457714a808ae28",
                "sha256": "f21eeddfef3fbdf85c7c5ea22d1c084229ed1d148c6c262a843892526a3965fc"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d8ed95ebe4e0d7ea11457714a808ae28",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 97384,
            "upload_time": "2024-07-22T11:17:01",
            "upload_time_iso_8601": "2024-07-22T11:17:01.990791Z",
            "url": "https://files.pythonhosted.org/packages/f4/4d/8e20c88e70e5a99995dfb8467360d26b97ea61583277f2eae02403a1a699/jwm.robotstxt-1.0.8-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7b0b91bf15669d663399624229e780bf4966abfe186890f63ef8bf03fcf4e05",
                "md5": "65aaffd09406d8adcce2c8b4ad0f06a8",
                "sha256": "776dd8dac091477f12d59ac906aaa2071a55078453b906d9f8a8bb7dd545eac4"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65aaffd09406d8adcce2c8b4ad0f06a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 134125,
            "upload_time": "2024-07-22T11:17:02",
            "upload_time_iso_8601": "2024-07-22T11:17:02.996140Z",
            "url": "https://files.pythonhosted.org/packages/a7/b0/b91bf15669d663399624229e780bf4966abfe186890f63ef8bf03fcf4e05/jwm.robotstxt-1.0.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9f708f102aa7ea4f80f6a961647f91416e0131f3f18a7c0e211816841d42d16",
                "md5": "7235b0fd385e3f24bdb00f325a8e29f8",
                "sha256": "52cf092ed39d0fe07f52a66c0543587aeed1b13c3d3a77f0b7502553e6cf9608"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7235b0fd385e3f24bdb00f325a8e29f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 131271,
            "upload_time": "2024-07-22T11:17:04",
            "upload_time_iso_8601": "2024-07-22T11:17:04.320314Z",
            "url": "https://files.pythonhosted.org/packages/e9/f7/08f102aa7ea4f80f6a961647f91416e0131f3f18a7c0e211816841d42d16/jwm.robotstxt-1.0.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e45d2ce7bc6beb33ab1aa3be4d18ffa4d0b5db14ef5a2648149433c43cad6f95",
                "md5": "1af3d3fafbb8d0b25bf97252d9a03700",
                "sha256": "aaf530bad81600487f33f2c766cee859f2e82c8a8d64f4b168198113186cf44f"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1af3d3fafbb8d0b25bf97252d9a03700",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 179744,
            "upload_time": "2024-07-22T11:17:05",
            "upload_time_iso_8601": "2024-07-22T11:17:05.352043Z",
            "url": "https://files.pythonhosted.org/packages/e4/5d/2ce7bc6beb33ab1aa3be4d18ffa4d0b5db14ef5a2648149433c43cad6f95/jwm.robotstxt-1.0.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1716110d97b86cbff1b4f5152f1b2b539018f19ed91e96a3360a26cec8a343ee",
                "md5": "968596ece21407075a786fec3b610188",
                "sha256": "ab71c6c12e76cbccbdc95577d58da6e70bb95407f0eeddf77af2b70e561dea28"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "968596ece21407075a786fec3b610188",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 170106,
            "upload_time": "2024-07-22T11:17:06",
            "upload_time_iso_8601": "2024-07-22T11:17:06.610517Z",
            "url": "https://files.pythonhosted.org/packages/17/16/110d97b86cbff1b4f5152f1b2b539018f19ed91e96a3360a26cec8a343ee/jwm.robotstxt-1.0.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ead965225b63a53cc1787474eebcca85fc2c6aa4784282838dbf94c695b789eb",
                "md5": "ef43ff04e6c2dce06e9b12af2e9b0fcf",
                "sha256": "8defaf4bca19634b88305e969c412daf1f2ecd566e93b127f38a58f000afa334"
            },
            "downloads": -1,
            "filename": "jwm.robotstxt-1.0.8-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ef43ff04e6c2dce06e9b12af2e9b0fcf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 95900,
            "upload_time": "2024-07-22T11:17:07",
            "upload_time_iso_8601": "2024-07-22T11:17:07.701858Z",
            "url": "https://files.pythonhosted.org/packages/ea/d9/65225b63a53cc1787474eebcca85fc2c6aa4784282838dbf94c695b789eb/jwm.robotstxt-1.0.8-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eab0df1f6e2485dc7ecbc1a71433d2f28e9541dce69e914c0b0bc5fa9fcbd98f",
                "md5": "6757bca376e3a9f786c4bbc2d6912ac8",
                "sha256": "e0042e368bfab415e70ce393bd449959d534c343cdb0568c32efd84de6aac94d"
            },
            "downloads": -1,
            "filename": "jwm_robotstxt-1.0.8.tar.gz",
            "has_sig": false,
            "md5_digest": "6757bca376e3a9f786c4bbc2d6912ac8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 43785,
            "upload_time": "2024-07-22T11:17:09",
            "upload_time_iso_8601": "2024-07-22T11:17:09.040393Z",
            "url": "https://files.pythonhosted.org/packages/ea/b0/df1f6e2485dc7ecbc1a71433d2f28e9541dce69e914c0b0bc5fa9fcbd98f/jwm_robotstxt-1.0.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-22 11:17:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jwmorley73",
    "github_project": "jwm.robotstxt",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jwm.robotstxt"
}
        
Elapsed time: 4.21609s