grpc-requests


Namegrpc-requests JSON
Version 0.1.20 PyPI version JSON
download
home_pagehttps://github.com/wesky93/grpc_requests
Summarygrpc for Humans. grpc reflection support client
upload_time2024-08-15 20:30:35
maintainerViridianForge
docs_urlNone
authorwesky93
requires_python>=3.8
licenseApache License 2.0
keywords
VCS
bugtrack_url
requirements grpcio grpcio-reflection protobuf google-api-core cryptography
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # grpc_requests

[![Nox](https://img.shields.io/badge/%F0%9F%A6%8A-Nox-D85E00.svg)](https://github.com/wntrblm/nox)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![Checked with mypy](https://www.mypy-lang.org/static/mypy_badge.svg)](https://mypy-lang.org/)
[![PyPI](https://img.shields.io/pypi/v/grpc-requests?style=flat-square)](https://pypi.org/project/grpc-requests)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/grpc-requests?style=flat-square)](https://pypi.org/project/grpc-requests)
[![PyPI download month](https://img.shields.io/pypi/dm/grpc-requests?style=flat-square)](https://pypi.org/project/grpc-requests)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
![Views](https://views.whatilearened.today/views/github/wesky93/grpc_requests.svg)

## GRPC for Humans

Leverage [reflection](https://github.com/grpc/grpc/blob/master/doc/server-reflection.md)
to interact with GRPC in a familiar manner for users of the [requests](https://requests.readthedocs.io/en/latest/) library.

```python
from grpc_requests import Client

client = Client.get_by_endpoint("localhost:50051")
assert client.service_names == ["helloworld.Greeter"]

request_data = {"name": "sinsky"}
say_hello_response = client.request("helloworld.Greeter", "SayHello", request_data)
assert say_hello_response ==  {"message":"Hello sinsky!"}
```

## Features

- Create a client easily when connecting to servers implementing grpc reflection
- Still support creating a client from stubs when reflection isn't available
- All unary and stream methods supported
- TLS and compression connections supported
- AsyncIO API supported

## Install

```shell script
pip install grpc_requests
```

## Usage

In short:

Instantiate a client using the URL of a GRPC server and any authentication
credentials you may need. If the server utilizes SSL (and it probably does)
make sure to toggle that flag.

```python
from grpc_requests import Client

metadata = [("authorization", "bearer my.cool.jwt")]
client = Client.get_by_endpoint("cool.servers.arecool:443", ssl=True, metadata=metadata)
```

The [examples page](./src/examples/README.md) provides more thorough examples of
usage scenarioes, and the [unit tests](./src/tests/) are also a useful reference point.

## Contributing

Contributions from the community are welcomed and greatly appreciated.

Before opening a PR, running `python -m nox` can be used to ensure the contribution passes
linting and unit test checks for all supported versions of Python and protobuf.
You can also run [complexity.sh](./complexity.sh) to use
[radon](https://pypi.org/project/radon/) to look at the cyclomatic complexity,
maintainability index, and Halstead effort and difficulty of files.

PRs should be targeted to merge with the `develop` branch. When opening a PR,
please assign it to a maintainer for review. The maintainers will take it from
there.

## Compatibility

`grpc_requests` currently does its best to support versions of Python and
protobuf that are within their support lifetimes. You may find that other versions
of dependencies work with the library, but this should be treated as a happy accident.

For Python, we target versions that are in the security and bugfix phases.
For protobuf, we target versions that in their public support phase.

[Python's support matrix](https://devguide.python.org/versions/)
[Protobuf's support matrix](https://protobuf.dev/support/version-support/#python)

## Questions, Comments, Issues?

For questions, please start a conversation on the [discussions page](https://github.com/wesky93/grpc_requests/discussions)!

For feature requests or bugs, please open an [issue](https://github.com/wesky93/grpc_requests/issues) and assign it the appropriate tag.

## Maintainers

- sinsky - [wesky93](https://github.com/wesky93)
- Wayne Manselle - [ViridianForge](https://viridianforge.tech)

# ChangeLog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.20](https://github.com/grpc-requests/grpc_requests/releases/tag/v0.1.20) - 2024-08-15

### Added

- Noxfile for testing combinations of supported versions Python and protobuf
- Specifications around support targets for Python and protobuf for the library

### Fixed

- Fixed a bug wherein attempting to retrieve a dependency of a FileDescriptor could
  result thrown an exception if the dependency was not being served via reflection by
  the server.

## [0.1.19](https://github.com/grpc-requests/grpc_requests/releases/tag/v0.1.19) - 2024-07-18

### Added

- Tools for developers to measure complexity of the code base
- Integrations with mypy

### Removed

Support for Python 3.7

## [0.1.18](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.18) - 2024-05-18

### Added

- Support for lazy loading of services in async clients

## [0.1.17](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.17) - 2024-04-22

### Added

- Support for custom message parsing in both async and sync clients

### Removed

- Removed singular FileDescriptor getter methods and Method specific field descriptor
  methods as laid out previously.

## [0.1.16](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.16) - 2024-03-03

### Added

- Additional usage examples

### Fixed

- Put deprecation warnings in the correct place for old get_descriptor methods, so they do not warn at all times.

## [0.1.15](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.15) - 2024-02-17

### Added

- Add methods to return FileDescriptors and their transistive dependencies as requested by either a name or symbol
- Add option to skip automatic checking of method availability

### Deprecated

- Due to the possibility of transient dependencies being missed, or other name or symbol collisions, methods to access singular FileDescriptors are deprecated and will be removed in version 0.1.17
- The method to retrieve fields of a method's descriptor input type alone will be removed in version 0.1.17

## [0.1.14](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.14) - 2024-01-06

### Added

- MethodMetaData accessible to clients
- MethodDescriptors accessible via MethodMetaData
- When using ReflectionClients, FileDescriptors accessible by name and symbol
- New examples documented

## [0.1.13](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.13) - 2023-12-03

### Added

- Added channel interceptors for standard and async clients

### Fixed

- Refactored how methods and services are added to description pool to better avoid cases where FileDescriptors may be added twice.

## [0.1.12](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.12) - 2023-11-26

### Added

- Method to print out a generic descriptor added to utils collection
- Helper methods to print out a method's request and responses in a human readable format

### Changed

- Documentation revamped
- Version checks to avoid using deprecated methods added to async client

### Fixed

- Include `requirements.txt` in build manifest

### Deprecated

- Method to retrieve fields for the descriptor of a method's input type.

## [0.1.11](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.11) - 2023-10-05

### Added

- Method to retrieve fields for the descriptor of a method's input type.

### Changes

- Updates to minimum versons of requirements to address vulnerabilities

## [0.1.10](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.10) - 2023-03-07

### Fixed

- Corrected pin of `protobuf` version in `requirements.txt`

## [0.1.9](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.9) - 2023-02-14

### Changes

- Reimplementation of test case framework
- Restoration of reflection client test cases
- Updates to continuous integration pipeline

## [0.1.8](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.8) - 2023-01-24

### Changes

- Update project and dev dependencies to versions that require Python >= 3.7
- Update project documentation and examples

## [0.1.7](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.7) - 2022-12-16

### Deprecated

- homi dependency, as the project has been archived
- homi dependent test code

## [0.1.6](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.6) - 2022-11-10

### Fixed

- Ignore repeat imports of protobufs and reflecting against a server

## [0.1.3](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.3) - 2022-7-14

### Fixed

- remove click

### Issues

- ignore test before deploy

## [0.1.2](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.2) - 2022-7-7

## [0.1.1](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.1) - 2022-6-13

### Changes

- remove unused package : click #35

## [0.1.0](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.0) - 2021-8-21

### Added

- Full TLS connection support

### Fixed

- Ignore reflection if service already registered

### Changed

- Update grpcio version

## [0.0.10](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.10) - 2021-2-27

### Fixed

- Fix 3.6 compatibility issue : await is in f-string

## [0.0.9](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.9) - 2020-12-25

### Added

- Support AsyncIO API

## [0.0.8](https://github.com/spaceone-dev/grpc_requests/releases/tag/0.0.8) - 2020-11-24

### Added

- Add StubClient

### Fixed

- Bypasss kwargs to base client

## [0.0.7](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.7) - 2020-10-4

### Added

- Support Compression

## [0.0.6](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.6) - 2020-10-3

### Added

- Support TLS connections

## [0.0.5](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.5) - 2020-9-9

### Changed

- Response filled gets original proto field name rather than(before returned lowerCamelCase)

## [0.0.4](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.4) - 2020-7-21

## [0.0.3](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.3) - 2020-7-21

### Added

- Dynamic request method
- Service client

## [0.0.2](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.2) - 2020-7-20

### Added

- Support all method types
- Add request test case

## [0.0.1](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.1) - 2020-7-20

### Added

- Sync proto using reflection
- Auto convert request(response) from(to) dict
- Support unary-unary

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/wesky93/grpc_requests",
    "name": "grpc-requests",
    "maintainer": "ViridianForge",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "wayne@viridianforge.tech",
    "keywords": null,
    "author": "wesky93",
    "author_email": "wesky93@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/92/84/f5a3874a6e10448d8c198253d2c79f7b34a23fb4a96b78a648dc468913a6/grpc_requests-0.1.20.tar.gz",
    "platform": null,
    "description": "# grpc_requests\n\n[![Nox](https://img.shields.io/badge/%F0%9F%A6%8A-Nox-D85E00.svg)](https://github.com/wntrblm/nox)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n[![Checked with mypy](https://www.mypy-lang.org/static/mypy_badge.svg)](https://mypy-lang.org/)\n[![PyPI](https://img.shields.io/pypi/v/grpc-requests?style=flat-square)](https://pypi.org/project/grpc-requests)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/grpc-requests?style=flat-square)](https://pypi.org/project/grpc-requests)\n[![PyPI download month](https://img.shields.io/pypi/dm/grpc-requests?style=flat-square)](https://pypi.org/project/grpc-requests)\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n![Views](https://views.whatilearened.today/views/github/wesky93/grpc_requests.svg)\n\n## GRPC for Humans\n\nLeverage [reflection](https://github.com/grpc/grpc/blob/master/doc/server-reflection.md)\nto interact with GRPC in a familiar manner for users of the [requests](https://requests.readthedocs.io/en/latest/) library.\n\n```python\nfrom grpc_requests import Client\n\nclient = Client.get_by_endpoint(\"localhost:50051\")\nassert client.service_names == [\"helloworld.Greeter\"]\n\nrequest_data = {\"name\": \"sinsky\"}\nsay_hello_response = client.request(\"helloworld.Greeter\", \"SayHello\", request_data)\nassert say_hello_response ==  {\"message\":\"Hello sinsky!\"}\n```\n\n## Features\n\n- Create a client easily when connecting to servers implementing grpc reflection\n- Still support creating a client from stubs when reflection isn't available\n- All unary and stream methods supported\n- TLS and compression connections supported\n- AsyncIO API supported\n\n## Install\n\n```shell script\npip install grpc_requests\n```\n\n## Usage\n\nIn short:\n\nInstantiate a client using the URL of a GRPC server and any authentication\ncredentials you may need. If the server utilizes SSL (and it probably does)\nmake sure to toggle that flag.\n\n```python\nfrom grpc_requests import Client\n\nmetadata = [(\"authorization\", \"bearer my.cool.jwt\")]\nclient = Client.get_by_endpoint(\"cool.servers.arecool:443\", ssl=True, metadata=metadata)\n```\n\nThe [examples page](./src/examples/README.md) provides more thorough examples of\nusage scenarioes, and the [unit tests](./src/tests/) are also a useful reference point.\n\n## Contributing\n\nContributions from the community are welcomed and greatly appreciated.\n\nBefore opening a PR, running `python -m nox` can be used to ensure the contribution passes\nlinting and unit test checks for all supported versions of Python and protobuf.\nYou can also run [complexity.sh](./complexity.sh) to use\n[radon](https://pypi.org/project/radon/) to look at the cyclomatic complexity,\nmaintainability index, and Halstead effort and difficulty of files.\n\nPRs should be targeted to merge with the `develop` branch. When opening a PR,\nplease assign it to a maintainer for review. The maintainers will take it from\nthere.\n\n## Compatibility\n\n`grpc_requests` currently does its best to support versions of Python and\nprotobuf that are within their support lifetimes. You may find that other versions\nof dependencies work with the library, but this should be treated as a happy accident.\n\nFor Python, we target versions that are in the security and bugfix phases.\nFor protobuf, we target versions that in their public support phase.\n\n[Python's support matrix](https://devguide.python.org/versions/)\n[Protobuf's support matrix](https://protobuf.dev/support/version-support/#python)\n\n## Questions, Comments, Issues?\n\nFor questions, please start a conversation on the [discussions page](https://github.com/wesky93/grpc_requests/discussions)!\n\nFor feature requests or bugs, please open an [issue](https://github.com/wesky93/grpc_requests/issues) and assign it the appropriate tag.\n\n## Maintainers\n\n- sinsky - [wesky93](https://github.com/wesky93)\n- Wayne Manselle - [ViridianForge](https://viridianforge.tech)\n\n# ChangeLog\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n\n## [0.1.20](https://github.com/grpc-requests/grpc_requests/releases/tag/v0.1.20) - 2024-08-15\n\n### Added\n\n- Noxfile for testing combinations of supported versions Python and protobuf\n- Specifications around support targets for Python and protobuf for the library\n\n### Fixed\n\n- Fixed a bug wherein attempting to retrieve a dependency of a FileDescriptor could\n  result thrown an exception if the dependency was not being served via reflection by\n  the server.\n\n## [0.1.19](https://github.com/grpc-requests/grpc_requests/releases/tag/v0.1.19) - 2024-07-18\n\n### Added\n\n- Tools for developers to measure complexity of the code base\n- Integrations with mypy\n\n### Removed\n\nSupport for Python 3.7\n\n## [0.1.18](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.18) - 2024-05-18\n\n### Added\n\n- Support for lazy loading of services in async clients\n\n## [0.1.17](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.17) - 2024-04-22\n\n### Added\n\n- Support for custom message parsing in both async and sync clients\n\n### Removed\n\n- Removed singular FileDescriptor getter methods and Method specific field descriptor\n  methods as laid out previously.\n\n## [0.1.16](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.16) - 2024-03-03\n\n### Added\n\n- Additional usage examples\n\n### Fixed\n\n- Put deprecation warnings in the correct place for old get_descriptor methods, so they do not warn at all times.\n\n## [0.1.15](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.15) - 2024-02-17\n\n### Added\n\n- Add methods to return FileDescriptors and their transistive dependencies as requested by either a name or symbol\n- Add option to skip automatic checking of method availability\n\n### Deprecated\n\n- Due to the possibility of transient dependencies being missed, or other name or symbol collisions, methods to access singular FileDescriptors are deprecated and will be removed in version 0.1.17\n- The method to retrieve fields of a method's descriptor input type alone will be removed in version 0.1.17\n\n## [0.1.14](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.14) - 2024-01-06\n\n### Added\n\n- MethodMetaData accessible to clients\n- MethodDescriptors accessible via MethodMetaData\n- When using ReflectionClients, FileDescriptors accessible by name and symbol\n- New examples documented\n\n## [0.1.13](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.13) - 2023-12-03\n\n### Added\n\n- Added channel interceptors for standard and async clients\n\n### Fixed\n\n- Refactored how methods and services are added to description pool to better avoid cases where FileDescriptors may be added twice.\n\n## [0.1.12](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.12) - 2023-11-26\n\n### Added\n\n- Method to print out a generic descriptor added to utils collection\n- Helper methods to print out a method's request and responses in a human readable format\n\n### Changed\n\n- Documentation revamped\n- Version checks to avoid using deprecated methods added to async client\n\n### Fixed\n\n- Include `requirements.txt` in build manifest\n\n### Deprecated\n\n- Method to retrieve fields for the descriptor of a method's input type.\n\n## [0.1.11](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.11) - 2023-10-05\n\n### Added\n\n- Method to retrieve fields for the descriptor of a method's input type.\n\n### Changes\n\n- Updates to minimum versons of requirements to address vulnerabilities\n\n## [0.1.10](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.10) - 2023-03-07\n\n### Fixed\n\n- Corrected pin of `protobuf` version in `requirements.txt`\n\n## [0.1.9](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.9) - 2023-02-14\n\n### Changes\n\n- Reimplementation of test case framework\n- Restoration of reflection client test cases\n- Updates to continuous integration pipeline\n\n## [0.1.8](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.8) - 2023-01-24\n\n### Changes\n\n- Update project and dev dependencies to versions that require Python >= 3.7\n- Update project documentation and examples\n\n## [0.1.7](https://github.com/wesky93/grpc_requests/releases/tag/v0.1.7) - 2022-12-16\n\n### Deprecated\n\n- homi dependency, as the project has been archived\n- homi dependent test code\n\n## [0.1.6](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.6) - 2022-11-10\n\n### Fixed\n\n- Ignore repeat imports of protobufs and reflecting against a server\n\n## [0.1.3](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.3) - 2022-7-14\n\n### Fixed\n\n- remove click\n\n### Issues\n\n- ignore test before deploy\n\n## [0.1.2](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.2) - 2022-7-7\n\n## [0.1.1](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.1) - 2022-6-13\n\n### Changes\n\n- remove unused package : click #35\n\n## [0.1.0](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.1.0) - 2021-8-21\n\n### Added\n\n- Full TLS connection support\n\n### Fixed\n\n- Ignore reflection if service already registered\n\n### Changed\n\n- Update grpcio version\n\n## [0.0.10](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.10) - 2021-2-27\n\n### Fixed\n\n- Fix 3.6 compatibility issue : await is in f-string\n\n## [0.0.9](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.9) - 2020-12-25\n\n### Added\n\n- Support AsyncIO API\n\n## [0.0.8](https://github.com/spaceone-dev/grpc_requests/releases/tag/0.0.8) - 2020-11-24\n\n### Added\n\n- Add StubClient\n\n### Fixed\n\n- Bypasss kwargs to base client\n\n## [0.0.7](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.7) - 2020-10-4\n\n### Added\n\n- Support Compression\n\n## [0.0.6](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.6) - 2020-10-3\n\n### Added\n\n- Support TLS connections\n\n## [0.0.5](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.5) - 2020-9-9\n\n### Changed\n\n- Response filled gets original proto field name rather than(before returned lowerCamelCase)\n\n## [0.0.4](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.4) - 2020-7-21\n\n## [0.0.3](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.3) - 2020-7-21\n\n### Added\n\n- Dynamic request method\n- Service client\n\n## [0.0.2](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.2) - 2020-7-20\n\n### Added\n\n- Support all method types\n- Add request test case\n\n## [0.0.1](https://github.com/spaceone-dev/grpc_requests/releases/tag/v0.0.1) - 2020-7-20\n\n### Added\n\n- Sync proto using reflection\n- Auto convert request(response) from(to) dict\n- Support unary-unary\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "grpc for Humans. grpc reflection support client",
    "version": "0.1.20",
    "project_urls": {
        "Homepage": "https://github.com/wesky93/grpc_requests"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2149cd11971a1d0afac829bfdffdbf32e46080c6725eff22d20433fa80c0ab0",
                "md5": "e20ce914806895efd6bc0ab3248b3654",
                "sha256": "e491083e90c1683b99242b0deefed47485ef0029b6cc85aaaaae38c0a4b1b4ea"
            },
            "downloads": -1,
            "filename": "grpc_requests-0.1.20-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e20ce914806895efd6bc0ab3248b3654",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 20170,
            "upload_time": "2024-08-15T20:30:33",
            "upload_time_iso_8601": "2024-08-15T20:30:33.844925Z",
            "url": "https://files.pythonhosted.org/packages/a2/14/9cd11971a1d0afac829bfdffdbf32e46080c6725eff22d20433fa80c0ab0/grpc_requests-0.1.20-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9284f5a3874a6e10448d8c198253d2c79f7b34a23fb4a96b78a648dc468913a6",
                "md5": "6d63bed1f4a80fc3e59191ce69903d31",
                "sha256": "a76744d781c5a7bf3abde8dc778d24c4e17deb39d173d85096ff3caee3d15250"
            },
            "downloads": -1,
            "filename": "grpc_requests-0.1.20.tar.gz",
            "has_sig": false,
            "md5_digest": "6d63bed1f4a80fc3e59191ce69903d31",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 20183,
            "upload_time": "2024-08-15T20:30:35",
            "upload_time_iso_8601": "2024-08-15T20:30:35.379617Z",
            "url": "https://files.pythonhosted.org/packages/92/84/f5a3874a6e10448d8c198253d2c79f7b34a23fb4a96b78a648dc468913a6/grpc_requests-0.1.20.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-15 20:30:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "wesky93",
    "github_project": "grpc_requests",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "grpcio",
            "specs": [
                [
                    ">=",
                    "1.60.1"
                ]
            ]
        },
        {
            "name": "grpcio-reflection",
            "specs": [
                [
                    ">=",
                    "1.60.1"
                ]
            ]
        },
        {
            "name": "protobuf",
            "specs": [
                [
                    ">=",
                    "4.25.0"
                ]
            ]
        },
        {
            "name": "google-api-core",
            "specs": [
                [
                    ">=",
                    "2.11.1"
                ]
            ]
        },
        {
            "name": "cryptography",
            "specs": [
                [
                    ">=",
                    "41.0.7"
                ]
            ]
        }
    ],
    "lcname": "grpc-requests"
}
        
Elapsed time: 0.96950s