flake8-to-ruff


Nameflake8-to-ruff JSON
Version 0.0.234 PyPI version JSON
download
home_pageNone
SummaryConvert existing Flake8 configuration to Ruff.
upload_time2024-05-26 23:23:20
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords automation flake8 pycodestyle pyflakes pylint clippy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # flake8-to-ruff

> [!WARNING]
>
> `flake8-to-ruff` is no longer supported. You may experience warnings or breakages when using it with versions of Ruff
> released after `v0.0.233`.

Convert existing Flake8 configuration files (`setup.cfg`, `tox.ini`, or `.flake8`) for use with
[Ruff](https://github.com/charliermarsh/ruff).

Generates a Ruff-compatible `pyproject.toml` section.

## Installation and Usage

### Installation

Available as [`flake8-to-ruff`](https://pypi.org/project/flake8-to-ruff/) on PyPI:

```shell
pip install flake8-to-ruff
```

### Usage

To run `flake8-to-ruff`:

```shell
flake8-to-ruff path/to/setup.cfg
flake8-to-ruff path/to/tox.ini
flake8-to-ruff path/to/.flake8
```

`flake8-to-ruff` will print the relevant `pyproject.toml` sections to standard output, like so:

```toml
[tool.ruff]
exclude = [
    '.svn',
    'CVS',
    '.bzr',
    '.hg',
    '.git',
    '__pycache__',
    '.tox',
    '.idea',
    '.mypy_cache',
    '.venv',
    'node_modules',
    '_state_machine.py',
    'test_fstring.py',
    'bad_coding2.py',
    'badsyntax_*.py',
]
select = [
    'A',
    'E',
    'F',
    'Q',
]
ignore = []

[tool.ruff.flake8-quotes]
inline-quotes = 'single'

[tool.ruff.pep8-naming]
ignore-names = [
    'foo',
    'bar',
]
```

### Plugins

`flake8-to-ruff` will attempt to infer any activated plugins based on the settings provided in your
configuration file.

For example, if your `.flake8` file includes a `docstring-convention` property, `flake8-to-ruff`
will enable the appropriate [`flake8-docstrings`](https://pypi.org/project/flake8-docstrings/)
checks.

Alternatively, you can manually specify plugins on the command-line:

```shell
flake8-to-ruff path/to/.flake8 --plugin flake8-builtins --plugin flake8-quotes
```

## Limitations

1. Ruff only supports a subset of the Flake configuration options. `flake8-to-ruff` will warn on and
   ignore unsupported options in the `.flake8` file (or equivalent). (Similarly, Ruff has a few
   configuration options that don't exist in Flake8.)
2. Ruff will omit any rule codes that are unimplemented or unsupported by Ruff, including rule
   codes from unsupported plugins. (See the [Ruff README](https://github.com/charliermarsh/ruff#user-content-how-does-ruff-compare-to-flake8)
   for the complete list of supported plugins.)

## License

MIT

## Contributing

Contributions are welcome and hugely appreciated. To get started, check out the
[contributing guidelines](https://github.com/charliermarsh/ruff/blob/main/CONTRIBUTING.md).


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "flake8-to-ruff",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "automation, flake8, pycodestyle, pyflakes, pylint, clippy",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/79/cd/5268a5dc9c2cb2bcd6004af8c3ccbbaea33f3d1b008a41fac94378ec2cbd/flake8_to_ruff-0.0.234.tar.gz",
    "platform": null,
    "description": "# flake8-to-ruff\n\n> [!WARNING]\n>\n> `flake8-to-ruff` is no longer supported. You may experience warnings or breakages when using it with versions of Ruff\n> released after `v0.0.233`.\n\nConvert existing Flake8 configuration files (`setup.cfg`, `tox.ini`, or `.flake8`) for use with\n[Ruff](https://github.com/charliermarsh/ruff).\n\nGenerates a Ruff-compatible `pyproject.toml` section.\n\n## Installation and Usage\n\n### Installation\n\nAvailable as [`flake8-to-ruff`](https://pypi.org/project/flake8-to-ruff/) on PyPI:\n\n```shell\npip install flake8-to-ruff\n```\n\n### Usage\n\nTo run `flake8-to-ruff`:\n\n```shell\nflake8-to-ruff path/to/setup.cfg\nflake8-to-ruff path/to/tox.ini\nflake8-to-ruff path/to/.flake8\n```\n\n`flake8-to-ruff` will print the relevant `pyproject.toml` sections to standard output, like so:\n\n```toml\n[tool.ruff]\nexclude = [\n    '.svn',\n    'CVS',\n    '.bzr',\n    '.hg',\n    '.git',\n    '__pycache__',\n    '.tox',\n    '.idea',\n    '.mypy_cache',\n    '.venv',\n    'node_modules',\n    '_state_machine.py',\n    'test_fstring.py',\n    'bad_coding2.py',\n    'badsyntax_*.py',\n]\nselect = [\n    'A',\n    'E',\n    'F',\n    'Q',\n]\nignore = []\n\n[tool.ruff.flake8-quotes]\ninline-quotes = 'single'\n\n[tool.ruff.pep8-naming]\nignore-names = [\n    'foo',\n    'bar',\n]\n```\n\n### Plugins\n\n`flake8-to-ruff` will attempt to infer any activated plugins based on the settings provided in your\nconfiguration file.\n\nFor example, if your `.flake8` file includes a `docstring-convention` property, `flake8-to-ruff`\nwill enable the appropriate [`flake8-docstrings`](https://pypi.org/project/flake8-docstrings/)\nchecks.\n\nAlternatively, you can manually specify plugins on the command-line:\n\n```shell\nflake8-to-ruff path/to/.flake8 --plugin flake8-builtins --plugin flake8-quotes\n```\n\n## Limitations\n\n1. Ruff only supports a subset of the Flake configuration options. `flake8-to-ruff` will warn on and\n   ignore unsupported options in the `.flake8` file (or equivalent). (Similarly, Ruff has a few\n   configuration options that don't exist in Flake8.)\n2. Ruff will omit any rule codes that are unimplemented or unsupported by Ruff, including rule\n   codes from unsupported plugins. (See the [Ruff README](https://github.com/charliermarsh/ruff#user-content-how-does-ruff-compare-to-flake8)\n   for the complete list of supported plugins.)\n\n## License\n\nMIT\n\n## Contributing\n\nContributions are welcome and hugely appreciated. To get started, check out the\n[contributing guidelines](https://github.com/charliermarsh/ruff/blob/main/CONTRIBUTING.md).\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Convert existing Flake8 configuration to Ruff.",
    "version": "0.0.234",
    "project_urls": {
        "repository": "https://github.com/charliermarsh/ruff#subdirectory=crates/flake8_to_ruff"
    },
    "split_keywords": [
        "automation",
        " flake8",
        " pycodestyle",
        " pyflakes",
        " pylint",
        " clippy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de080c63ae4b04045429a5b3c37bf865995741000b023637c48530c31ce5bbc7",
                "md5": "26f44ad96edd94409de588cbf8acb4df",
                "sha256": "f6e4bd5027b2ee2a97e0959420adf660747dac5bfbce065bf98d283837c83c30"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26f44ad96edd94409de588cbf8acb4df",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 863365,
            "upload_time": "2024-05-26T23:24:13",
            "upload_time_iso_8601": "2024-05-26T23:24:13.957897Z",
            "url": "https://files.pythonhosted.org/packages/de/08/0c63ae4b04045429a5b3c37bf865995741000b023637c48530c31ce5bbc7/flake8_to_ruff-0.0.234-py3-none-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbc72eecad034961e87f40ab9f71bc54d67662de3b16bd4569cb31cc4411a2f6",
                "md5": "a478dfa363b68cb88b92fdb0350e4412",
                "sha256": "ef5c7b7599deb35443fc4dfccb14ddcd4ac8234b39b8acf77e40b3acfcadf6f8"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a478dfa363b68cb88b92fdb0350e4412",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 1620064,
            "upload_time": "2024-05-26T23:24:15",
            "upload_time_iso_8601": "2024-05-26T23:24:15.999699Z",
            "url": "https://files.pythonhosted.org/packages/db/c7/2eecad034961e87f40ab9f71bc54d67662de3b16bd4569cb31cc4411a2f6/flake8_to_ruff-0.0.234-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f7b0f32c8f25f7d69f1a653b917b7380a28e41c6c93ace795f4f75b47eb36e0",
                "md5": "c336b2a2a1bda5386f0ca7b72cfb8802",
                "sha256": "4a2bcdc1f5650742e52a859f8675ee944067ce7d9ddb69e54bb7886a30ddfc7b"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c336b2a2a1bda5386f0ca7b72cfb8802",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 796424,
            "upload_time": "2024-05-26T23:24:18",
            "upload_time_iso_8601": "2024-05-26T23:24:18.410348Z",
            "url": "https://files.pythonhosted.org/packages/8f/7b/0f32c8f25f7d69f1a653b917b7380a28e41c6c93ace795f4f75b47eb36e0/flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26f45174d686ac4fbd6cd482dd170396e9334b1a306c5024cbc743ee403951c7",
                "md5": "c1d10f23f1c0ed0c3f280328b31716e2",
                "sha256": "1eced8c763304c1d2b254a500ccf5920d62b0f333f8b51d06b7a4f38fa185509"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c1d10f23f1c0ed0c3f280328b31716e2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 778263,
            "upload_time": "2024-05-26T23:24:20",
            "upload_time_iso_8601": "2024-05-26T23:24:20.130643Z",
            "url": "https://files.pythonhosted.org/packages/26/f4/5174d686ac4fbd6cd482dd170396e9334b1a306c5024cbc743ee403951c7/flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e402409baf48cba73b3d49ce02e78a89683238582a221ace98b5da267b69b331",
                "md5": "561bed4f0369d13ded94ba1748d7dc84",
                "sha256": "b1ed890618e907d7bfb8d3c7d8894382d9356ed540866e6874bc38697c9743de"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "561bed4f0369d13ded94ba1748d7dc84",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 873607,
            "upload_time": "2024-05-26T23:24:22",
            "upload_time_iso_8601": "2024-05-26T23:24:22.088941Z",
            "url": "https://files.pythonhosted.org/packages/e4/02/409baf48cba73b3d49ce02e78a89683238582a221ace98b5da267b69b331/flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2b2ed8568ccf815fcca122a5059f37e1d89b166df093a09e5a4b86364b55206",
                "md5": "653f18627fe2a6fe2fd267a59f6b9df4",
                "sha256": "d5cd56a58e613f3f7d21079288b78c44bcd3e9c4ddde15b365c6b53756c91553"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "653f18627fe2a6fe2fd267a59f6b9df4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 913368,
            "upload_time": "2024-05-26T23:24:25",
            "upload_time_iso_8601": "2024-05-26T23:24:25.876125Z",
            "url": "https://files.pythonhosted.org/packages/b2/b2/ed8568ccf815fcca122a5059f37e1d89b166df093a09e5a4b86364b55206/flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49f604ec26726b0be82b0f115b18d6e621e2f943596b97695a4eedf0122ba8a4",
                "md5": "2dec4ca7fab2b299c3abdfd98b6529cc",
                "sha256": "18b04d68150605a1858245b0d83f8e1f3240b6e7f5db19d774d284a0db6b8c04"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "2dec4ca7fab2b299c3abdfd98b6529cc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 922096,
            "upload_time": "2024-05-26T23:24:24",
            "upload_time_iso_8601": "2024-05-26T23:24:24.099464Z",
            "url": "https://files.pythonhosted.org/packages/49/f6/04ec26726b0be82b0f115b18d6e621e2f943596b97695a4eedf0122ba8a4/flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "708fc5e5cbc5a8ad9614e12de41e3c35fb2a8ce14a4bae956c6ba07095e117f5",
                "md5": "7268b4a0f427646452a387dc86905e08",
                "sha256": "574c0542b24afb70bf88128bb57ecdac3dc35b9b2c2ae6faadf76011b742df21"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7268b4a0f427646452a387dc86905e08",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 1061146,
            "upload_time": "2024-05-26T23:24:27",
            "upload_time_iso_8601": "2024-05-26T23:24:27.762221Z",
            "url": "https://files.pythonhosted.org/packages/70/8f/c5e5cbc5a8ad9614e12de41e3c35fb2a8ce14a4bae956c6ba07095e117f5/flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4443c781d54efaa5f5594268e5b1544a5441d675b0b5d5890c6701973d31df1c",
                "md5": "5d68ffd99d32886c27b9d17fcacadc7e",
                "sha256": "a5cbb3fc82004252e74caf50db53e8356e31a021f308abf3488e9b92ca085678"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d68ffd99d32886c27b9d17fcacadc7e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 870270,
            "upload_time": "2024-05-26T23:24:29",
            "upload_time_iso_8601": "2024-05-26T23:24:29.815603Z",
            "url": "https://files.pythonhosted.org/packages/44/43/c781d54efaa5f5594268e5b1544a5441d675b0b5d5890c6701973d31df1c/flake8_to_ruff-0.0.234-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdd030c1234ebd2060924817c43a364f38b833f41fbb0f46fa686ccd52b2e817",
                "md5": "4090362014ce5cd88a4f5ef2d2828705",
                "sha256": "cf79a254cde5aafbd3206a7b7313484ef7a458b2782e1498fbdb99a3a9fd24ae"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4090362014ce5cd88a4f5ef2d2828705",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 807112,
            "upload_time": "2024-05-26T23:24:31",
            "upload_time_iso_8601": "2024-05-26T23:24:31.823691Z",
            "url": "https://files.pythonhosted.org/packages/fd/d0/30c1234ebd2060924817c43a364f38b833f41fbb0f46fa686ccd52b2e817/flake8_to_ruff-0.0.234-py3-none-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2068450852b081032dd884fa38d6b53b8f74b2f8039827b40df146d658e3c62",
                "md5": "9b54fb69245b4037c075cec94ef08ead",
                "sha256": "06ac25865ae185dc29efbe32ce6ad7a5280df8031a05ab8bd64f9ed7609d9960"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9b54fb69245b4037c075cec94ef08ead",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 788745,
            "upload_time": "2024-05-26T23:24:33",
            "upload_time_iso_8601": "2024-05-26T23:24:33.242011Z",
            "url": "https://files.pythonhosted.org/packages/c2/06/8450852b081032dd884fa38d6b53b8f74b2f8039827b40df146d658e3c62/flake8_to_ruff-0.0.234-py3-none-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acee5ffcb03897f4cfa5895c30d5b3d8d0d1729b7f3f665bac4cac5be0f6ad9e",
                "md5": "11f7ba7ba89fc3059fdc70e7b7930372",
                "sha256": "97f5e6f9ca06b7b18f52101c509c95cf0b035183dd9804616691834b04ae478b"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "11f7ba7ba89fc3059fdc70e7b7930372",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 872844,
            "upload_time": "2024-05-26T23:24:35",
            "upload_time_iso_8601": "2024-05-26T23:24:35.323168Z",
            "url": "https://files.pythonhosted.org/packages/ac/ee/5ffcb03897f4cfa5895c30d5b3d8d0d1729b7f3f665bac4cac5be0f6ad9e/flake8_to_ruff-0.0.234-py3-none-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d9adf3c1d600cf0acdbfbe17dc67a35fb2bb41cad9dacba224b92ede9fa85ba",
                "md5": "f4eca1516aa1b293fa8cce137380e090",
                "sha256": "a0483771d2c7107ac7fd494ae8770f2323eeaaab41acd4071f96763cb8a8c119"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4eca1516aa1b293fa8cce137380e090",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 913465,
            "upload_time": "2024-05-26T23:24:37",
            "upload_time_iso_8601": "2024-05-26T23:24:37.166996Z",
            "url": "https://files.pythonhosted.org/packages/4d/9a/df3c1d600cf0acdbfbe17dc67a35fb2bb41cad9dacba224b92ede9fa85ba/flake8_to_ruff-0.0.234-py3-none-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a50d90a64b9238a839f83cd9714e34a1b7aedae3eb6de224bc9e647dd5cbf2a6",
                "md5": "001e70d4fe63639a74466a74e1c70a93",
                "sha256": "b3c985e6db3a2ca349a1ae2577bf32373cbe5c69d376e6a22828ec13899d431f"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "001e70d4fe63639a74466a74e1c70a93",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 722302,
            "upload_time": "2024-05-26T23:24:38",
            "upload_time_iso_8601": "2024-05-26T23:24:38.967786Z",
            "url": "https://files.pythonhosted.org/packages/a5/0d/90a64b9238a839f83cd9714e34a1b7aedae3eb6de224bc9e647dd5cbf2a6/flake8_to_ruff-0.0.234-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efd81d5a3ba965b364b0274af20b7caf95351b0d911d1965647dd791aaadf293",
                "md5": "8478d620fc1b95d3415c49c6a50f16f5",
                "sha256": "10b06c830d88c97f618d6e68a4b3afc8d0e0a74c8c571444ff618e517264f355"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8478d620fc1b95d3415c49c6a50f16f5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 789000,
            "upload_time": "2024-05-26T23:24:40",
            "upload_time_iso_8601": "2024-05-26T23:24:40.823731Z",
            "url": "https://files.pythonhosted.org/packages/ef/d8/1d5a3ba965b364b0274af20b7caf95351b0d911d1965647dd791aaadf293/flake8_to_ruff-0.0.234-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79cd5268a5dc9c2cb2bcd6004af8c3ccbbaea33f3d1b008a41fac94378ec2cbd",
                "md5": "be4e85a44e01c2c70c7fc2b3a7a125dd",
                "sha256": "00f1eb4115523f28d9cabaa06c26ee88ea68d1193b1a09209bac9d30949a8b22"
            },
            "downloads": -1,
            "filename": "flake8_to_ruff-0.0.234.tar.gz",
            "has_sig": false,
            "md5_digest": "be4e85a44e01c2c70c7fc2b3a7a125dd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 725993,
            "upload_time": "2024-05-26T23:23:20",
            "upload_time_iso_8601": "2024-05-26T23:23:20.593992Z",
            "url": "https://files.pythonhosted.org/packages/79/cd/5268a5dc9c2cb2bcd6004af8c3ccbbaea33f3d1b008a41fac94378ec2cbd/flake8_to_ruff-0.0.234.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-26 23:23:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "charliermarsh",
    "github_project": "ruff#subdirectory=crates",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "flake8-to-ruff"
}
        
Elapsed time: 0.39996s