Name | bepatient JSON |
Version |
0.16.0
JSON |
| download |
home_page | None |
Summary | A library facilitating work with asynchronous APIs |
upload_time | 2025-01-18 19:13:06 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | MIT License Copyright (c) 2023 Dawid Szaniawski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
api
async
api_testing
automation
json
testing
web
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
[![Tests](https://github.com/dawid-szaniawski/bepatient/actions/workflows/tox.yml/badge.svg)](https://github.com/dawid-szaniawski/bepatient/actions/workflows/tox.yml)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/bepatient)](https://pypi.org/project/bepatient/)
[![PyPI](https://img.shields.io/pypi/v/bepatient)](https://pypi.org/project/bepatient/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/dawid-szaniawski/bepatient/blob/master/LICENSE)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![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)
[![codecov](https://codecov.io/github/dawid-szaniawski/bepatient/branch/master/graph/badge.svg?token=hY7Nb5jGgi)](https://codecov.io/github/dawid-szaniawski/bepatient)
[![CodeFactor](https://www.codefactor.io/repository/github/dawid-szaniawski/bepatient/badge)](https://www.codefactor.io/repository/github/dawid-szaniawski/bepatient)
# Be Patient
_bepatient_ is a library aimed at facilitating work with asynchronous applications. It
allows for the repeated execution of specific actions until the desired effect is
achieved.
## Features
- Set up and monitor requests for expected values.
- Flexible comparison using various checkers and comparers.
- Configure multiple conditions to be met by response.
- Inspect various aspects of the response (body, status code, headers).
- Detailed logs, facilitating the analysis of the test process.
- Retry mechanism with customizable retries and delay.
## Installation
To install _bepatient_, you can use pip:
```bash
pip install bepatient
```
_bepatient_ supports Python 3.10+
## Basic Usage
Using RequestsWaiter object:
```python
from requests import get
from bepatient import RequestsWaiter
waiter = RequestsWaiter(request=get("https://example.com/api"))
waiter.add_checker(comparer="contain", expected_value="string")
waiter.run()
response = waiter.get_result()
assert response.status_code == 200
```
Simple way:
```python
from requests import get
from bepatient import wait_for_value_in_request
response = wait_for_value_in_request(
request=get("https://example.com/api"),
comparer="contain",
expected_value="string"
)
assert response.status_code == 200
```
If we need add more than one checker:
```python
from requests import get
from bepatient import wait_for_values_in_request
list_of_checkers = [
{
"checker": "json_checker",
"comparer": "contain",
"expected_value": "string"
},
{
"checker": "headers_checker",
"comparer": "is_equal",
"expected_value": "cloudflare",
"dict_path": "Server",
},
]
response = wait_for_values_in_request(
request=get("https://example.com/api"),
checkers=list_of_checkers,
retries=5,
)
assert response.status_code == 200
```
## License
MIT License
Copyright (c) 2023-2024 Dawid Szaniawski
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Raw data
{
"_id": null,
"home_page": null,
"name": "bepatient",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "api, async, api_testing, automation, json, testing, web",
"author": null,
"author_email": "Dawid Szaniawski <dszaniawski@webludus.pl>",
"download_url": "https://files.pythonhosted.org/packages/62/56/db52fc0ccc2a0e1a98fd273b593fa1d72995d5985a720cbe3591f92d9227/bepatient-0.16.0.tar.gz",
"platform": null,
"description": "[![Tests](https://github.com/dawid-szaniawski/bepatient/actions/workflows/tox.yml/badge.svg)](https://github.com/dawid-szaniawski/bepatient/actions/workflows/tox.yml)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/bepatient)](https://pypi.org/project/bepatient/)\n[![PyPI](https://img.shields.io/pypi/v/bepatient)](https://pypi.org/project/bepatient/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/dawid-szaniawski/bepatient/blob/master/LICENSE)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\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[![codecov](https://codecov.io/github/dawid-szaniawski/bepatient/branch/master/graph/badge.svg?token=hY7Nb5jGgi)](https://codecov.io/github/dawid-szaniawski/bepatient)\n[![CodeFactor](https://www.codefactor.io/repository/github/dawid-szaniawski/bepatient/badge)](https://www.codefactor.io/repository/github/dawid-szaniawski/bepatient)\n\n# Be Patient\n\n_bepatient_ is a library aimed at facilitating work with asynchronous applications. It\nallows for the repeated execution of specific actions until the desired effect is\nachieved.\n\n## Features\n\n- Set up and monitor requests for expected values.\n- Flexible comparison using various checkers and comparers.\n- Configure multiple conditions to be met by response.\n- Inspect various aspects of the response (body, status code, headers).\n- Detailed logs, facilitating the analysis of the test process.\n- Retry mechanism with customizable retries and delay.\n\n## Installation\n\nTo install _bepatient_, you can use pip:\n\n```bash\npip install bepatient\n```\n\n_bepatient_ supports Python 3.10+\n\n## Basic Usage\n\nUsing RequestsWaiter object:\n\n```python\nfrom requests import get\n\nfrom bepatient import RequestsWaiter\n\nwaiter = RequestsWaiter(request=get(\"https://example.com/api\"))\nwaiter.add_checker(comparer=\"contain\", expected_value=\"string\")\nwaiter.run()\n\nresponse = waiter.get_result()\n\nassert response.status_code == 200\n```\n\nSimple way:\n\n```python\nfrom requests import get\n\nfrom bepatient import wait_for_value_in_request\n\nresponse = wait_for_value_in_request(\n request=get(\"https://example.com/api\"),\n comparer=\"contain\",\n expected_value=\"string\"\n)\nassert response.status_code == 200\n```\n\nIf we need add more than one checker:\n\n```python\nfrom requests import get\n\nfrom bepatient import wait_for_values_in_request\n\nlist_of_checkers = [\n {\n \"checker\": \"json_checker\",\n \"comparer\": \"contain\",\n \"expected_value\": \"string\"\n },\n {\n \"checker\": \"headers_checker\",\n \"comparer\": \"is_equal\",\n \"expected_value\": \"cloudflare\",\n \"dict_path\": \"Server\",\n },\n]\nresponse = wait_for_values_in_request(\n request=get(\"https://example.com/api\"),\n checkers=list_of_checkers,\n retries=5,\n)\nassert response.status_code == 200\n```\n\n## License\n\nMIT License\n\nCopyright (c) 2023-2024 Dawid Szaniawski\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2023 Dawid Szaniawski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "A library facilitating work with asynchronous APIs",
"version": "0.16.0",
"project_urls": {
"Documentation": "https://bepatient.webludus.pl/",
"Homepage": "https://webludus.pl/en",
"Source": "https://github.com/dawid-szaniawski/bepatient"
},
"split_keywords": [
"api",
" async",
" api_testing",
" automation",
" json",
" testing",
" web"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "692c156558add8da59095ab01a1384a5d4d530076d1e2096f67a49cf797f80e3",
"md5": "72aadbd9811238ea2fab28e1aa0186ab",
"sha256": "99793bb55f1a6549d08713b277e8fcd97ebaffb9df5ada70661debca6744d651"
},
"downloads": -1,
"filename": "bepatient-0.16.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "72aadbd9811238ea2fab28e1aa0186ab",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 17459,
"upload_time": "2025-01-18T19:13:05",
"upload_time_iso_8601": "2025-01-18T19:13:05.358656Z",
"url": "https://files.pythonhosted.org/packages/69/2c/156558add8da59095ab01a1384a5d4d530076d1e2096f67a49cf797f80e3/bepatient-0.16.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6256db52fc0ccc2a0e1a98fd273b593fa1d72995d5985a720cbe3591f92d9227",
"md5": "70fcdb684ef23fcdbdc826ea1307031e",
"sha256": "4938c3cf109399866c03866cea213905ad89570b4944d2340631fef067268c53"
},
"downloads": -1,
"filename": "bepatient-0.16.0.tar.gz",
"has_sig": false,
"md5_digest": "70fcdb684ef23fcdbdc826ea1307031e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 21280,
"upload_time": "2025-01-18T19:13:06",
"upload_time_iso_8601": "2025-01-18T19:13:06.466881Z",
"url": "https://files.pythonhosted.org/packages/62/56/db52fc0ccc2a0e1a98fd273b593fa1d72995d5985a720cbe3591f92d9227/bepatient-0.16.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-18 19:13:06",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "dawid-szaniawski",
"github_project": "bepatient",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "bepatient"
}