protoxy


Nameprotoxy JSON
Version 0.7.1.post2 PyPI version JSON
download
home_pageNone
SummaryA compiler for .proto files into FileDescriptorSets or (experimentally) python dynamic module
upload_time2024-09-03 19:50:56
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords protobuf protoc
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![pypi](https://img.shields.io/pypi/v/protoxy.svg)](https://pypi.org/project/protoxy)
[![Continuous integration](https://github.com/tardyp/protoxy/actions/workflows/CI.yml/badge.svg)](https://github.com/tardyp/protoxy/actions/workflows/CI.yml)
![MIT](https://img.shields.io/badge/license-MIT-blue.svg)

# protoxy

A compiler for .proto files into FileDescriptorSets or (experimentally) python dynamic module.
Python bindings for the [protox](https://github.com/andrewhickman/protox) rust library.

# Installation

```bash
pip install protoxy
```

# Usage

```python
import protoxy

# Compile a proto file (returns a FileDescriptorSets object using the protobuf library)
fds = protoxy.compile(["path/to/file.proto"])

# Compile a proto file (returns a binary FileDescriptorSets object)
fds_bin = protoxy.compile_bin(["path/to/file.proto"])

# Compile a proto file into a dynamic python modules, injected into your globals
protoxy.compile_as_modules(["path/to/file.proto"], dest=globals())

# The returned module is similar to the one generated by protoc
# you can keep protoc _pb2 suffix by setting suffix='_pb2'
file.Message()
```

See the tests for more examples.

# Additional options

All those apis have additional options that can be passed as keyword arguments.

```python

fds = protoxy.compile(
    files = ["path/to/file.proto"],
    includes = ["path/to"],
    include_imports = True,
    include_source_info = True,
    use_protoc = False)
```

- files: List of files to compile (can be strings or `os.PathLike` objects)

- includes: List of include paths (can be strings or `os.PathLike` objects), if empty, defaults to the directory path of the first file in `files`

- include_imports: Sets whether the output `FileDescriptorSet` should include imported files.
  only files explicitly included in `files` are included. If this option is set, imported files are included too.

- include_source_info: Include source info in the output (this includes comments found in the source files)

- use_protoc: Use the `protoc` binary to compile the files. If this is set to `True`, the protoc implementation is used using binary found in $PATH. protoc is defacto standard implementation of the protobuf compiler, but using it with python requires to run another binary, which can be a problem in some environments, is slower than the rust implementation and has scalability issue with command line length on windows.
- comments2option: A dictionary mapping comments to protobuf options. The keys are the name of the protobuf object: ("file", "message", "enum", "service", "method", "field", "enum_value", "extension", "oneof") and the values are the option numeric id. This is only supported by the Rust implementation.
Convert comments to options. This is useful to include documentation in the generated python module. See the comments2option section for more details.

# Error handling

The library raises a `protoxy.ProtoxyError` exception when an error occurs during the compilation.

* short description of the error can be found in the `message` attribute of the exception.

* long description of the error can be found in the `details` attribute of the exception (or `repr(e)`).

* machine readable list of all errors can be found in the `all_errors: typing.List[protoxy.errors.DetailedError]` property of the exception.

It will be formatted using the rust `miette` library, which is a bit more user friendly than the protobuf error messages.

Details contain all errors for the whole compilation.

Example of details:
```
Error:   × name 'strings' is not defined
   ╭─[test.proto:5:9]
 4 │     message Test {
 5 │         strings name = 1;
   ·         ───┬───
   ·            ╰── found here
 6 │         fold name2 = 2;
   ╰────

Error:   × name 'fold' is not defined
   ╭─[test.proto:6:9]
 5 │         strings name = 1;
 6 │         fold name2 = 2;
   ·         ──┬─
   ·           ╰── found here
 7 │     }
   ╰────
Error:   × expected an integer, but found '='
   ╭─[test2.proto:6:21]
 5 │         strings name = 1;
 6 │         fold name2 == 2;
   ·                     ┬
   ·                     ╰── found here
 7 │     }
   ╰────```

# proto module best practice

Structure of a python project can be made like this:

```
project/
    protos/
        file1.proto
        file2.proto
    protos.py
    main.py
```

Following python module shall be named protos.py and contain the following code:

```python
import pathlib, protoxy

_protos = (pathlib.Path(__file__).parent / "protos").glob("*.proto")
protoxy.compile_as_modules(_protos, dest=globals())

```

# Comments2option

Protobuf support for documentation is limited to comments, which are included in source code info, an obscure part of FileDescriptor.
Sourcecode info is hard to use because it relies on object paths, which are described using id and index in the protobuf object tree.
This is only described in the protobuf mailing list in a message from Jerry Berg in a thread called "Best way to parse SourceCodeInfo Data From Protobuf Files"

https://groups.google.com/g/protobuf/c/AyOQvhtwvYc/m/AtgdNNkbCAAJ (not sure if this URL is stable)


It is much easier to process if the documentation is included as a protobuf option for each message, field, enum, etc. But the syntax is not ideal, as the options strings must be split across line boundary e.g

```proto
syntax = "proto3";
import "doc.proto";
message Test {
  option (doc.message_description) = "This is a test message "
  "whose doc is split between"
  "multiple lines";
  string name = 1 [(doc.field_description) = "This is a test field"];
}
```

doc.proto being:

```proto
syntax = "proto3";
package doc;
extend google.protobuf.MessageOptions {
  string message_description = 50000;
}
extend google.protobuf.FieldOptions {
  string field_description = 50001;
}
```
Notice how the option is split between multiple lines. It is easy to forget to add the trailing space (like in second line), which will result in some word being concatenated.

To avoid this, the `comments2option` parameter of the protoxy compiler can be used to convert comments into options. It will add the option to the next element, so the above example can be written as:

```proto
syntax = "proto3";
import "doc.proto";
// This is a test message whose doc is
// split between multiple lines
message Test {
  // This is a test field
  string name = 1;
}
```
in your python code, you can then use:
```python
import protoxy

mod = protoxy.compile_as_modules(
    files = ["path/to/doc.proto"],
    includes = ["path/to"])

# for python's protobuf module to properly decode the options,
# they must be loaded as a python module first
message_description = mod["doc"].message_description
field_description = mod["doc"].field_description

fds = protoxy.compile(
    files = ["path/to/file.proto"],
    includes = ["path/to"],
    include_source_info = True,
    comments2option = {"message": 50000, "field": 50001})

assert fds.file[0].message_type[0].options.Extensions[message_description] == "This is a test message whose doc is split between multiple lines"
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "protoxy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Pierre Tardy <tardyp@gmail.com>",
    "keywords": "protobuf, protoc",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/d9/0a/d7f2d6b40059dac70dca52f9933d55ed970da65b3c989d5c3a1c535a1f2e/protoxy-0.7.1.post2.tar.gz",
    "platform": null,
    "description": "[![pypi](https://img.shields.io/pypi/v/protoxy.svg)](https://pypi.org/project/protoxy)\n[![Continuous integration](https://github.com/tardyp/protoxy/actions/workflows/CI.yml/badge.svg)](https://github.com/tardyp/protoxy/actions/workflows/CI.yml)\n![MIT](https://img.shields.io/badge/license-MIT-blue.svg)\n\n# protoxy\n\nA compiler for .proto files into FileDescriptorSets or (experimentally) python dynamic module.\nPython bindings for the [protox](https://github.com/andrewhickman/protox) rust library.\n\n# Installation\n\n```bash\npip install protoxy\n```\n\n# Usage\n\n```python\nimport protoxy\n\n# Compile a proto file (returns a FileDescriptorSets object using the protobuf library)\nfds = protoxy.compile([\"path/to/file.proto\"])\n\n# Compile a proto file (returns a binary FileDescriptorSets object)\nfds_bin = protoxy.compile_bin([\"path/to/file.proto\"])\n\n# Compile a proto file into a dynamic python modules, injected into your globals\nprotoxy.compile_as_modules([\"path/to/file.proto\"], dest=globals())\n\n# The returned module is similar to the one generated by protoc\n# you can keep protoc _pb2 suffix by setting suffix='_pb2'\nfile.Message()\n```\n\nSee the tests for more examples.\n\n# Additional options\n\nAll those apis have additional options that can be passed as keyword arguments.\n\n```python\n\nfds = protoxy.compile(\n    files = [\"path/to/file.proto\"],\n    includes = [\"path/to\"],\n    include_imports = True,\n    include_source_info = True,\n    use_protoc = False)\n```\n\n- files: List of files to compile (can be strings or `os.PathLike` objects)\n\n- includes: List of include paths (can be strings or `os.PathLike` objects), if empty, defaults to the directory path of the first file in `files`\n\n- include_imports: Sets whether the output `FileDescriptorSet` should include imported files.\n  only files explicitly included in `files` are included. If this option is set, imported files are included too.\n\n- include_source_info: Include source info in the output (this includes comments found in the source files)\n\n- use_protoc: Use the `protoc` binary to compile the files. If this is set to `True`, the protoc implementation is used using binary found in $PATH. protoc is defacto standard implementation of the protobuf compiler, but using it with python requires to run another binary, which can be a problem in some environments, is slower than the rust implementation and has scalability issue with command line length on windows.\n- comments2option: A dictionary mapping comments to protobuf options. The keys are the name of the protobuf object: (\"file\", \"message\", \"enum\", \"service\", \"method\", \"field\", \"enum_value\", \"extension\", \"oneof\") and the values are the option numeric id. This is only supported by the Rust implementation.\nConvert comments to options. This is useful to include documentation in the generated python module. See the comments2option section for more details.\n\n# Error handling\n\nThe library raises a `protoxy.ProtoxyError` exception when an error occurs during the compilation.\n\n* short description of the error can be found in the `message` attribute of the exception.\n\n* long description of the error can be found in the `details` attribute of the exception (or `repr(e)`).\n\n* machine readable list of all errors can be found in the `all_errors: typing.List[protoxy.errors.DetailedError]` property of the exception.\n\nIt will be formatted using the rust `miette` library, which is a bit more user friendly than the protobuf error messages.\n\nDetails contain all errors for the whole compilation.\n\nExample of details:\n```\nError:   \u00d7 name 'strings' is not defined\n   \u256d\u2500[test.proto:5:9]\n 4 \u2502     message Test {\n 5 \u2502         strings name = 1;\n   \u00b7         \u2500\u2500\u2500\u252c\u2500\u2500\u2500\n   \u00b7            \u2570\u2500\u2500 found here\n 6 \u2502         fold name2 = 2;\n   \u2570\u2500\u2500\u2500\u2500\n\nError:   \u00d7 name 'fold' is not defined\n   \u256d\u2500[test.proto:6:9]\n 5 \u2502         strings name = 1;\n 6 \u2502         fold name2 = 2;\n   \u00b7         \u2500\u2500\u252c\u2500\n   \u00b7           \u2570\u2500\u2500 found here\n 7 \u2502     }\n   \u2570\u2500\u2500\u2500\u2500\nError:   \u00d7 expected an integer, but found '='\n   \u256d\u2500[test2.proto:6:21]\n 5 \u2502         strings name = 1;\n 6 \u2502         fold name2 == 2;\n   \u00b7                     \u252c\n   \u00b7                     \u2570\u2500\u2500 found here\n 7 \u2502     }\n   \u2570\u2500\u2500\u2500\u2500```\n\n# proto module best practice\n\nStructure of a python project can be made like this:\n\n```\nproject/\n    protos/\n        file1.proto\n        file2.proto\n    protos.py\n    main.py\n```\n\nFollowing python module shall be named protos.py and contain the following code:\n\n```python\nimport pathlib, protoxy\n\n_protos = (pathlib.Path(__file__).parent / \"protos\").glob(\"*.proto\")\nprotoxy.compile_as_modules(_protos, dest=globals())\n\n```\n\n# Comments2option\n\nProtobuf support for documentation is limited to comments, which are included in source code info, an obscure part of FileDescriptor.\nSourcecode info is hard to use because it relies on object paths, which are described using id and index in the protobuf object tree.\nThis is only described in the protobuf mailing list in a message from Jerry Berg in a thread called \"Best way to parse SourceCodeInfo Data From Protobuf Files\"\n\nhttps://groups.google.com/g/protobuf/c/AyOQvhtwvYc/m/AtgdNNkbCAAJ (not sure if this URL is stable)\n\n\nIt is much easier to process if the documentation is included as a protobuf option for each message, field, enum, etc. But the syntax is not ideal, as the options strings must be split across line boundary e.g\n\n```proto\nsyntax = \"proto3\";\nimport \"doc.proto\";\nmessage Test {\n  option (doc.message_description) = \"This is a test message \"\n  \"whose doc is split between\"\n  \"multiple lines\";\n  string name = 1 [(doc.field_description) = \"This is a test field\"];\n}\n```\n\ndoc.proto being:\n\n```proto\nsyntax = \"proto3\";\npackage doc;\nextend google.protobuf.MessageOptions {\n  string message_description = 50000;\n}\nextend google.protobuf.FieldOptions {\n  string field_description = 50001;\n}\n```\nNotice how the option is split between multiple lines. It is easy to forget to add the trailing space (like in second line), which will result in some word being concatenated.\n\nTo avoid this, the `comments2option` parameter of the protoxy compiler can be used to convert comments into options. It will add the option to the next element, so the above example can be written as:\n\n```proto\nsyntax = \"proto3\";\nimport \"doc.proto\";\n// This is a test message whose doc is\n// split between multiple lines\nmessage Test {\n  // This is a test field\n  string name = 1;\n}\n```\nin your python code, you can then use:\n```python\nimport protoxy\n\nmod = protoxy.compile_as_modules(\n    files = [\"path/to/doc.proto\"],\n    includes = [\"path/to\"])\n\n# for python's protobuf module to properly decode the options,\n# they must be loaded as a python module first\nmessage_description = mod[\"doc\"].message_description\nfield_description = mod[\"doc\"].field_description\n\nfds = protoxy.compile(\n    files = [\"path/to/file.proto\"],\n    includes = [\"path/to\"],\n    include_source_info = True,\n    comments2option = {\"message\": 50000, \"field\": 50001})\n\nassert fds.file[0].message_type[0].options.Extensions[message_description] == \"This is a test message whose doc is split between multiple lines\"\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A compiler for .proto files into FileDescriptorSets or (experimentally) python dynamic module",
    "version": "0.7.1.post2",
    "project_urls": {
        "homepage": "https://github.com/tardyp/protoxy",
        "repository": "https://github.com/tardyp/protoxy"
    },
    "split_keywords": [
        "protobuf",
        " protoc"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc7305a7ab102058ec76d7f74ec67ebb5674f61c357783e3feb8c2a3a0bfa8c8",
                "md5": "90a45eb32665a27d802112ad99fd8ac8",
                "sha256": "fe7827b9c6145210969738d78978190d68b862f677a1cb7b7c04424965859199"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "90a45eb32665a27d802112ad99fd8ac8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1032088,
            "upload_time": "2024-09-03T19:50:46",
            "upload_time_iso_8601": "2024-09-03T19:50:46.558902Z",
            "url": "https://files.pythonhosted.org/packages/cc/73/05a7ab102058ec76d7f74ec67ebb5674f61c357783e3feb8c2a3a0bfa8c8/protoxy-0.7.1.post2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d230554b810d74fbf45318fbced6230c617bc4a6d7a15503988f49153c56c2e",
                "md5": "055dbd65c1640498057910a9a9250927",
                "sha256": "705b1aabc904c7e8035feb4774c5edfccdbea2e87e0de7aa43e9440deee88a2d"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "055dbd65c1640498057910a9a9250927",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1139290,
            "upload_time": "2024-09-03T19:50:03",
            "upload_time_iso_8601": "2024-09-03T19:50:03.777656Z",
            "url": "https://files.pythonhosted.org/packages/6d/23/0554b810d74fbf45318fbced6230c617bc4a6d7a15503988f49153c56c2e/protoxy-0.7.1.post2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "619bb0b5621b31c95a441882198b9193789fe40fcf1d08fea7d96adbc7ec44cd",
                "md5": "166b32150ee16656dff9aabd02a5b359",
                "sha256": "48a5dd263cd70d431fec79e169b4fea604a89b15c0bb2046f9051c3c4eac1c60"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "166b32150ee16656dff9aabd02a5b359",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1159332,
            "upload_time": "2024-09-03T19:50:31",
            "upload_time_iso_8601": "2024-09-03T19:50:31.559358Z",
            "url": "https://files.pythonhosted.org/packages/61/9b/b0b5621b31c95a441882198b9193789fe40fcf1d08fea7d96adbc7ec44cd/protoxy-0.7.1.post2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1fedc60591c1afef6c5aa4fbd77838db39db9a01c3ae0785af7badf21733dabc",
                "md5": "fed10a06567a0ac965ff481b0b4454a7",
                "sha256": "14ed27f2d8ccf083e6c3a301168112ef407f04765d1c68d340ccf1c65d13d0b6"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "fed10a06567a0ac965ff481b0b4454a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1242395,
            "upload_time": "2024-09-03T19:50:18",
            "upload_time_iso_8601": "2024-09-03T19:50:18.934935Z",
            "url": "https://files.pythonhosted.org/packages/1f/ed/c60591c1afef6c5aa4fbd77838db39db9a01c3ae0785af7badf21733dabc/protoxy-0.7.1.post2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0103ca4aaa7040645fdf200c21952aadfc07562006e1714b051eef1fc30090dd",
                "md5": "bac704d1932e2deee8ffea7f5b3b860f",
                "sha256": "cbbda163337554f37d1ce0af41421317866775904cc4d34e154892505cf8d54e"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bac704d1932e2deee8ffea7f5b3b860f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 844982,
            "upload_time": "2024-09-03T19:51:03",
            "upload_time_iso_8601": "2024-09-03T19:51:03.636231Z",
            "url": "https://files.pythonhosted.org/packages/01/03/ca4aaa7040645fdf200c21952aadfc07562006e1714b051eef1fc30090dd/protoxy-0.7.1.post2-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ff6863349fff81b778ec3f76859b37a807e370788360b84431b91a662873404",
                "md5": "eb194c400a05e1abfcbe0597b981abe6",
                "sha256": "f872f116bd5a0554cc2a1ce810a0bc1db326670378b12a67646708912926cc9d"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eb194c400a05e1abfcbe0597b981abe6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 909883,
            "upload_time": "2024-09-03T19:50:56",
            "upload_time_iso_8601": "2024-09-03T19:50:56.964127Z",
            "url": "https://files.pythonhosted.org/packages/0f/f6/863349fff81b778ec3f76859b37a807e370788360b84431b91a662873404/protoxy-0.7.1.post2-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad50b0477fd3c2f58bbdacdb3c85abc8a080d1f9a2c216d0f42bb04c0d76b975",
                "md5": "79735529ad127c4b8d9b5b91a2675471",
                "sha256": "6fb459bf1318577726a75ae1e4ca26b86729b700f76add47c3f042c64422f3b8"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79735529ad127c4b8d9b5b91a2675471",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1061113,
            "upload_time": "2024-09-03T19:50:52",
            "upload_time_iso_8601": "2024-09-03T19:50:52.487782Z",
            "url": "https://files.pythonhosted.org/packages/ad/50/b0477fd3c2f58bbdacdb3c85abc8a080d1f9a2c216d0f42bb04c0d76b975/protoxy-0.7.1.post2-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96f46b00010a1847a8d526aece0b7a1213909820f274f65deb9888078e8cd556",
                "md5": "efa7ffa969b20e94c2a564d5887132dc",
                "sha256": "67aa482f9ed1958f23048cc4b71928aa486d5d5c764defec2f0a88d858d30c30"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "efa7ffa969b20e94c2a564d5887132dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1032333,
            "upload_time": "2024-09-03T19:50:48",
            "upload_time_iso_8601": "2024-09-03T19:50:48.136294Z",
            "url": "https://files.pythonhosted.org/packages/96/f4/6b00010a1847a8d526aece0b7a1213909820f274f65deb9888078e8cd556/protoxy-0.7.1.post2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12178834fd55afc5b1bcd8f547cebe59d1363f4cda5c042ad775f529a166a700",
                "md5": "b99e39e41e2089d1992d3a9335c9be56",
                "sha256": "e626e01b76f658d3c44ceaa4f2f4de0c139e1b68e907695c1d05b64f9c617aec"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b99e39e41e2089d1992d3a9335c9be56",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1139132,
            "upload_time": "2024-09-03T19:50:05",
            "upload_time_iso_8601": "2024-09-03T19:50:05.757199Z",
            "url": "https://files.pythonhosted.org/packages/12/17/8834fd55afc5b1bcd8f547cebe59d1363f4cda5c042ad775f529a166a700/protoxy-0.7.1.post2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a906b1e853177845bbf4a188109404bcb14f86eb29acfa379bccfd3620a8d92c",
                "md5": "9c35552d9854f0e3a51d6db979f9f932",
                "sha256": "e4d58c83995eb735a07d058b3fe30b763b22cbc81c3f4e1c96f3ddb740c921ee"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c35552d9854f0e3a51d6db979f9f932",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1159406,
            "upload_time": "2024-09-03T19:50:32",
            "upload_time_iso_8601": "2024-09-03T19:50:32.960442Z",
            "url": "https://files.pythonhosted.org/packages/a9/06/b1e853177845bbf4a188109404bcb14f86eb29acfa379bccfd3620a8d92c/protoxy-0.7.1.post2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4a54894bf1f8976de2c2f9d5e9838fc1b1bcacc31131340409cba47ddfca8b5",
                "md5": "b404275f4d810bd6dd7ef3c232068171",
                "sha256": "4adb632eb68d664035fd3eae96d4dd18100d97105ddcb47fc456f1b66aa35eb8"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b404275f4d810bd6dd7ef3c232068171",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1242521,
            "upload_time": "2024-09-03T19:50:20",
            "upload_time_iso_8601": "2024-09-03T19:50:20.758232Z",
            "url": "https://files.pythonhosted.org/packages/e4/a5/4894bf1f8976de2c2f9d5e9838fc1b1bcacc31131340409cba47ddfca8b5/protoxy-0.7.1.post2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e90be6908037f9aa2c86dfff9e78d748fea46cd82581ff91cd3797ec0f3e2b14",
                "md5": "29b63e385a226cd943f47fb566c5d0ac",
                "sha256": "2af979ba5dff2df82f6e43aae7490f596b733c0df1637d5761c08bbb3bda2b28"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "29b63e385a226cd943f47fb566c5d0ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 845076,
            "upload_time": "2024-09-03T19:51:05",
            "upload_time_iso_8601": "2024-09-03T19:51:05.456049Z",
            "url": "https://files.pythonhosted.org/packages/e9/0b/e6908037f9aa2c86dfff9e78d748fea46cd82581ff91cd3797ec0f3e2b14/protoxy-0.7.1.post2-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85e34034e1a2c472a3876ad6ae087fde616ecbbdc2b5de24de843f655731f87a",
                "md5": "30829357a7fb5db8ea75174e4e9bd65a",
                "sha256": "11d4cb985ffdcd3252e4d5f8a3fcbfccf53e4fec93f26420b5f598f6c74491c0"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "30829357a7fb5db8ea75174e4e9bd65a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 910062,
            "upload_time": "2024-09-03T19:50:58",
            "upload_time_iso_8601": "2024-09-03T19:50:58.311911Z",
            "url": "https://files.pythonhosted.org/packages/85/e3/4034e1a2c472a3876ad6ae087fde616ecbbdc2b5de24de843f655731f87a/protoxy-0.7.1.post2-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3dcb2b8cbac75359d750c0db69dc3ccf2ec07ecdb8002f818052bde1c48af8d",
                "md5": "be1364e55dffb4cb6e49d44e1bd9267f",
                "sha256": "8af603a5655d5b9cefc71240c5385506ea12d0bb15ccfd5b6476f0aecc5b6a53"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be1364e55dffb4cb6e49d44e1bd9267f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1060409,
            "upload_time": "2024-09-03T19:50:54",
            "upload_time_iso_8601": "2024-09-03T19:50:54.869323Z",
            "url": "https://files.pythonhosted.org/packages/e3/dc/b2b8cbac75359d750c0db69dc3ccf2ec07ecdb8002f818052bde1c48af8d/protoxy-0.7.1.post2-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62eb5e6caf646666ac52cae75d0b99a9e5e33fe50a27f76dba1b2be648c8aa96",
                "md5": "5acd79d528b147f0d876a0c68d7a95c8",
                "sha256": "178056b8e1bd6817f04737b8287866f9091896a082500b9de0738ce12edf4a90"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5acd79d528b147f0d876a0c68d7a95c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1031861,
            "upload_time": "2024-09-03T19:50:49",
            "upload_time_iso_8601": "2024-09-03T19:50:49.525716Z",
            "url": "https://files.pythonhosted.org/packages/62/eb/5e6caf646666ac52cae75d0b99a9e5e33fe50a27f76dba1b2be648c8aa96/protoxy-0.7.1.post2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79794e7e7231509a67048a03115b9996a523b2b4640423ed9b07b72b6ba519aa",
                "md5": "9291ae969e5ca7251efef416ad6d167e",
                "sha256": "dcd3dc92156040b971743bff4cbcfcaaf6c08240951466ac51ddeab179ce366e"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9291ae969e5ca7251efef416ad6d167e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1138470,
            "upload_time": "2024-09-03T19:50:07",
            "upload_time_iso_8601": "2024-09-03T19:50:07.551885Z",
            "url": "https://files.pythonhosted.org/packages/79/79/4e7e7231509a67048a03115b9996a523b2b4640423ed9b07b72b6ba519aa/protoxy-0.7.1.post2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c93441688ce134e7a65351d626053959243f5f2b0693bb029336b7fe051821fe",
                "md5": "88a70b303f43c803ab13a1f3d8828f40",
                "sha256": "8d6bb2dcdc558c8efee3f699baeb8aeb2523e44f1f7c8372def9124619abb04f"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88a70b303f43c803ab13a1f3d8828f40",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1159315,
            "upload_time": "2024-09-03T19:50:34",
            "upload_time_iso_8601": "2024-09-03T19:50:34.311225Z",
            "url": "https://files.pythonhosted.org/packages/c9/34/41688ce134e7a65351d626053959243f5f2b0693bb029336b7fe051821fe/protoxy-0.7.1.post2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78f345ff37d4cc72ab51e433340f5664e3fc6b70665ca3c3d0f877986d10f882",
                "md5": "f26ca67ff6410028a677c9f590f6aecb",
                "sha256": "1468957a1126c554cb265c699beb490f90dee6439a32ee1d12d36bf182884015"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f26ca67ff6410028a677c9f590f6aecb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1241220,
            "upload_time": "2024-09-03T19:50:22",
            "upload_time_iso_8601": "2024-09-03T19:50:22.419824Z",
            "url": "https://files.pythonhosted.org/packages/78/f3/45ff37d4cc72ab51e433340f5664e3fc6b70665ca3c3d0f877986d10f882/protoxy-0.7.1.post2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0aa4e9534e9ede65553a1283820821e518433cf70aa38ba56a833665519508c4",
                "md5": "fb9eb6834beb4106a3c81af394fde9ff",
                "sha256": "0895dbcd0f5a0b2f76fa3bcecdd33e3836d2c2b3a672e9d1bb49bbe28226b7d2"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "fb9eb6834beb4106a3c81af394fde9ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 844678,
            "upload_time": "2024-09-03T19:51:06",
            "upload_time_iso_8601": "2024-09-03T19:51:06.773972Z",
            "url": "https://files.pythonhosted.org/packages/0a/a4/e9534e9ede65553a1283820821e518433cf70aa38ba56a833665519508c4/protoxy-0.7.1.post2-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9adb87aac261b9230e9b82cbce8bd89736fa4c7bf174921e2c29f5a47869117",
                "md5": "d90ee983433d8a7f90af099dbf23bf6c",
                "sha256": "59a8416874ad4625ed1ad6c184cefbc7ebf74277cddf5d0945cf6db3ee50a65f"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d90ee983433d8a7f90af099dbf23bf6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 909978,
            "upload_time": "2024-09-03T19:50:59",
            "upload_time_iso_8601": "2024-09-03T19:50:59.666093Z",
            "url": "https://files.pythonhosted.org/packages/a9/ad/b87aac261b9230e9b82cbce8bd89736fa4c7bf174921e2c29f5a47869117/protoxy-0.7.1.post2-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25578cc0b836818aaff1ddab26b3811e100be94082e6905b23453fcb1721e2c5",
                "md5": "a905719bf862d802538be3385a7b04bd",
                "sha256": "11dfc6778f2e288bbb921335becca700d262d4e8b8cc66339fe6f98f843e66ab"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a905719bf862d802538be3385a7b04bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1138935,
            "upload_time": "2024-09-03T19:50:09",
            "upload_time_iso_8601": "2024-09-03T19:50:09.489490Z",
            "url": "https://files.pythonhosted.org/packages/25/57/8cc0b836818aaff1ddab26b3811e100be94082e6905b23453fcb1721e2c5/protoxy-0.7.1.post2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38ec71314b28c0c76072068b5308a494110f23ac9211660635115272f5d4cc37",
                "md5": "070cb6573d5d3b11440152a681bdfbbc",
                "sha256": "f43d4e7530a09fccaecf91acebf91c184796cab658e50061d163e31846d3b755"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "070cb6573d5d3b11440152a681bdfbbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1160219,
            "upload_time": "2024-09-03T19:50:36",
            "upload_time_iso_8601": "2024-09-03T19:50:36.219236Z",
            "url": "https://files.pythonhosted.org/packages/38/ec/71314b28c0c76072068b5308a494110f23ac9211660635115272f5d4cc37/protoxy-0.7.1.post2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0f1c7433aa3e1039b175b8a6e81ad32f6b8d644669fcee86fab52ef2939ea8b",
                "md5": "82ae9dade93a97835c113404850fd926",
                "sha256": "6163bae679fdaf738830ccea125a116e6ef1ff55e8a93733f488047ca9937208"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "82ae9dade93a97835c113404850fd926",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1242101,
            "upload_time": "2024-09-03T19:50:24",
            "upload_time_iso_8601": "2024-09-03T19:50:24.073671Z",
            "url": "https://files.pythonhosted.org/packages/d0/f1/c7433aa3e1039b175b8a6e81ad32f6b8d644669fcee86fab52ef2939ea8b/protoxy-0.7.1.post2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26d9cf23a97d08f59c0fac191b30d819d175356981b8cac0d5430bdac7321848",
                "md5": "8d2cf6caf68246921c7d98759d2348f2",
                "sha256": "b3732a08df886eb9ffbe9c9eff975126ba0bf98397ac8730199f9bbdc97eae30"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "8d2cf6caf68246921c7d98759d2348f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 844772,
            "upload_time": "2024-09-03T19:51:07",
            "upload_time_iso_8601": "2024-09-03T19:51:07.997076Z",
            "url": "https://files.pythonhosted.org/packages/26/d9/cf23a97d08f59c0fac191b30d819d175356981b8cac0d5430bdac7321848/protoxy-0.7.1.post2-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7314d70ee1ab79d8f2961fa475d509fbc4ad85aa3a2d3c9baacfb24e42293bef",
                "md5": "4d6aa38ca61b8abe5fdb9458eeaba9af",
                "sha256": "8ba6df50431d0970bb21c2adc2da38223990fd56a37cb3dee932dbfd52e39b78"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d6aa38ca61b8abe5fdb9458eeaba9af",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 909907,
            "upload_time": "2024-09-03T19:51:01",
            "upload_time_iso_8601": "2024-09-03T19:51:01.018834Z",
            "url": "https://files.pythonhosted.org/packages/73/14/d70ee1ab79d8f2961fa475d509fbc4ad85aa3a2d3c9baacfb24e42293bef/protoxy-0.7.1.post2-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "350800282a32338cceba71324377ec02754fdc348e623000f68a88f5c90ab619",
                "md5": "5171c981da23ca4a333adc3f73b6aaf2",
                "sha256": "327a970c58918cc6e444e4676a3b3b11b1b08cf7eb324fb6ced57a0426b98e46"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5171c981da23ca4a333adc3f73b6aaf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1032290,
            "upload_time": "2024-09-03T19:50:50",
            "upload_time_iso_8601": "2024-09-03T19:50:50.837468Z",
            "url": "https://files.pythonhosted.org/packages/35/08/00282a32338cceba71324377ec02754fdc348e623000f68a88f5c90ab619/protoxy-0.7.1.post2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5b5760465d33718e0275ec23eb833b7e6138cb15a9cd7281d1b9e46c50e5f95",
                "md5": "4e0fe7fceed220e8caab7b829ef24fbb",
                "sha256": "2bc3f70e9ce1852125e4e409eb3efe191e4a946ec81df7442ce7b64d1f548cf6"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4e0fe7fceed220e8caab7b829ef24fbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1139314,
            "upload_time": "2024-09-03T19:50:11",
            "upload_time_iso_8601": "2024-09-03T19:50:11.324113Z",
            "url": "https://files.pythonhosted.org/packages/f5/b5/760465d33718e0275ec23eb833b7e6138cb15a9cd7281d1b9e46c50e5f95/protoxy-0.7.1.post2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44408385325d95b19758d6f37b5ccad82081f93abe1eba1dfaf3d3b1e2106263",
                "md5": "a32f440d608e4187f07d91ebc6135285",
                "sha256": "cd17ba6fd945709130f89a0805dc2a815cb152627bea63f7c4e4073d4e6093cb"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a32f440d608e4187f07d91ebc6135285",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1160363,
            "upload_time": "2024-09-03T19:50:37",
            "upload_time_iso_8601": "2024-09-03T19:50:37.636523Z",
            "url": "https://files.pythonhosted.org/packages/44/40/8385325d95b19758d6f37b5ccad82081f93abe1eba1dfaf3d3b1e2106263/protoxy-0.7.1.post2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32579f78268d45c67027fc44315e7be94025e1ad8839037397d470bce930de75",
                "md5": "02aec5742781aaaf8217d1622de01925",
                "sha256": "7f55e345da7058b3d8653044461250907009510e4bcfe6b367c09656b0e1a644"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "02aec5742781aaaf8217d1622de01925",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1242186,
            "upload_time": "2024-09-03T19:50:25",
            "upload_time_iso_8601": "2024-09-03T19:50:25.546282Z",
            "url": "https://files.pythonhosted.org/packages/32/57/9f78268d45c67027fc44315e7be94025e1ad8839037397d470bce930de75/protoxy-0.7.1.post2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52fa68e1d48e30137546e2a730c292b1b6a32b1d05138ec624ea63c26e59dfb4",
                "md5": "fc41ac8535770e3eb90743a72e7fec5d",
                "sha256": "37ad2b6062bba0c40a6fe02391172b5462d648e55096f3c2518f6f3be5d873f3"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "fc41ac8535770e3eb90743a72e7fec5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 844845,
            "upload_time": "2024-09-03T19:51:09",
            "upload_time_iso_8601": "2024-09-03T19:51:09.358316Z",
            "url": "https://files.pythonhosted.org/packages/52/fa/68e1d48e30137546e2a730c292b1b6a32b1d05138ec624ea63c26e59dfb4/protoxy-0.7.1.post2-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bee2c88756c48a22139efe10ad1a8a0c68198e94cbfecf13f4a71fd4f5e7868a",
                "md5": "fea72204967d25d33d8b770c17b0da50",
                "sha256": "9de1ff9b646ff5ee5c729e77d70e35fdbacca4b45d182e15305bbdf861d7464a"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fea72204967d25d33d8b770c17b0da50",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 910066,
            "upload_time": "2024-09-03T19:51:02",
            "upload_time_iso_8601": "2024-09-03T19:51:02.321789Z",
            "url": "https://files.pythonhosted.org/packages/be/e2/c88756c48a22139efe10ad1a8a0c68198e94cbfecf13f4a71fd4f5e7868a/protoxy-0.7.1.post2-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c9842babbea9a5d1f1e17b864e6e0aadb9b4b3d7a9c0d1599ea14c566248733",
                "md5": "22dd17cca8e49978eb35854393a81e54",
                "sha256": "1e33d4e3c7372e49ebc43f0c750d9229faefe9464466851a9b8b3e28030e2d19"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "22dd17cca8e49978eb35854393a81e54",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1141760,
            "upload_time": "2024-09-03T19:50:13",
            "upload_time_iso_8601": "2024-09-03T19:50:13.089914Z",
            "url": "https://files.pythonhosted.org/packages/7c/98/42babbea9a5d1f1e17b864e6e0aadb9b4b3d7a9c0d1599ea14c566248733/protoxy-0.7.1.post2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3aecd031bb7417cc04c06550087c340d61922603b1b63acd3def65c9beb4c7b7",
                "md5": "bad079a4cb8273a312fa14c565c1b5df",
                "sha256": "6f2c8870750f795323291ebebee18d214e3832e2bfb699e67aba67098a3822af"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bad079a4cb8273a312fa14c565c1b5df",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1161543,
            "upload_time": "2024-09-03T19:50:39",
            "upload_time_iso_8601": "2024-09-03T19:50:39.725073Z",
            "url": "https://files.pythonhosted.org/packages/3a/ec/d031bb7417cc04c06550087c340d61922603b1b63acd3def65c9beb4c7b7/protoxy-0.7.1.post2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d492b2a2cd6538372f5bf9f8f10b4fb16ed01644f3db458c6d8020ee2d05679e",
                "md5": "53a69454ef80b132078645efc1495b4f",
                "sha256": "42efdd6c7f533bb69299c8840bacaa71c53dc65c83ece2a19432dfc660399c99"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "53a69454ef80b132078645efc1495b4f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1245227,
            "upload_time": "2024-09-03T19:50:27",
            "upload_time_iso_8601": "2024-09-03T19:50:27.622308Z",
            "url": "https://files.pythonhosted.org/packages/d4/92/b2a2cd6538372f5bf9f8f10b4fb16ed01644f3db458c6d8020ee2d05679e/protoxy-0.7.1.post2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67d6824082cb78d88a336bb25cad29326c58c0795e3027692d07f716972b573f",
                "md5": "c55ae9ed2a3c34f142d7389907f22033",
                "sha256": "f1617155a41b68e9144b5756373ea7269dedd3c2181a8ee5afd0ccb9e042a261"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c55ae9ed2a3c34f142d7389907f22033",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1143167,
            "upload_time": "2024-09-03T19:50:15",
            "upload_time_iso_8601": "2024-09-03T19:50:15.085242Z",
            "url": "https://files.pythonhosted.org/packages/67/d6/824082cb78d88a336bb25cad29326c58c0795e3027692d07f716972b573f/protoxy-0.7.1.post2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a95fb4efab7af43b1f5a96ac827a485d4eea8baacbcc8049e47de6e198f5705",
                "md5": "7971384ef1276221e6b10f06a1407d81",
                "sha256": "b096a95284a69ee8e62c804ca80eb23dc5d43d19feaa27a37bab844c79c52c10"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7971384ef1276221e6b10f06a1407d81",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1143037,
            "upload_time": "2024-09-03T19:50:17",
            "upload_time_iso_8601": "2024-09-03T19:50:17.171607Z",
            "url": "https://files.pythonhosted.org/packages/4a/95/fb4efab7af43b1f5a96ac827a485d4eea8baacbcc8049e47de6e198f5705/protoxy-0.7.1.post2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4ea8387d9a45ebc1daa30cf8d7e6545a67d0ee773882dbbed309f4c4033cd6e",
                "md5": "46985f1540f8d774a0df5f673f3cd546",
                "sha256": "2c9f264d00c051255667bc69958b4e3e246e093b7adef379ba7732fcfbfc784b"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46985f1540f8d774a0df5f673f3cd546",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1163303,
            "upload_time": "2024-09-03T19:50:45",
            "upload_time_iso_8601": "2024-09-03T19:50:45.271404Z",
            "url": "https://files.pythonhosted.org/packages/c4/ea/8387d9a45ebc1daa30cf8d7e6545a67d0ee773882dbbed309f4c4033cd6e/protoxy-0.7.1.post2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7cdac4170a5d09aa82f740d61d0d84892080471d4097d75cd766d92cfb6ad66",
                "md5": "052ec516407cccd1ced74adbfaa17879",
                "sha256": "b75c61c71c36862c0c89ab6df4f3f1a83ed32f08153ba4b056106e58d3b88747"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "052ec516407cccd1ced74adbfaa17879",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1246030,
            "upload_time": "2024-09-03T19:50:29",
            "upload_time_iso_8601": "2024-09-03T19:50:29.682465Z",
            "url": "https://files.pythonhosted.org/packages/e7/cd/ac4170a5d09aa82f740d61d0d84892080471d4097d75cd766d92cfb6ad66/protoxy-0.7.1.post2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d90ad7f2d6b40059dac70dca52f9933d55ed970da65b3c989d5c3a1c535a1f2e",
                "md5": "459eb5cadace74681d2625e5e327a38b",
                "sha256": "8edda4c7a1a0387a4172028a046b55d6edcb46b3712bfbcbf68f4ab1f579631d"
            },
            "downloads": -1,
            "filename": "protoxy-0.7.1.post2.tar.gz",
            "has_sig": false,
            "md5_digest": "459eb5cadace74681d2625e5e327a38b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 21393,
            "upload_time": "2024-09-03T19:50:56",
            "upload_time_iso_8601": "2024-09-03T19:50:56.063533Z",
            "url": "https://files.pythonhosted.org/packages/d9/0a/d7f2d6b40059dac70dca52f9933d55ed970da65b3c989d5c3a1c535a1f2e/protoxy-0.7.1.post2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-03 19:50:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tardyp",
    "github_project": "protoxy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "protoxy"
}
        
Elapsed time: 0.37841s