httpr 0.1.12__tar.gz → 0.1.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of httpr might be problematic. Click here for more details.
- {httpr-0.1.12 → httpr-0.1.13}/PKG-INFO +1 -1
- httpr-0.1.13/benchmark.jpg +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/httpr/__init__.py +1 -1
- {httpr-0.1.12 → httpr-0.1.13}/pyproject.toml +1 -1
- httpr-0.1.12/benchmark.jpg +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/.github/workflows/CI.yml +4 -4
- {httpr-0.1.12 → httpr-0.1.13}/.github/workflows/mkdocs.yml +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/.github/workflows/set_version.py +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/.gitignore +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/.pre-commit-config.yaml +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/Cargo.lock +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/Cargo.toml +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/LICENSE +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/README.md +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/benchmark/README.md +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/benchmark/benchmark.py +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/benchmark/generate_image.py +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/benchmark/pyproject.toml +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/benchmark/requirements.txt +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/benchmark/server.py +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/docs/index.md +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/docs/writings/index.md +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/docs/writings/posts/2025-02-24-python-http-clients-suck.md +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/httpr/httpr.pyi +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/httpr/py.typed +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/httpr.code-workspace +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/mkdocs.yml +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/scratch.ipynb +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/src/lib.rs +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/src/response.rs +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/src/traits.rs +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/src/utils.rs +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/tests/httpx_conns.py +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/tests/test_asyncclient.py +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/tests/test_client.py +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/tests/test_defs.py +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/tests/test_ssl.py +0 -0
- {httpr-0.1.12 → httpr-0.1.13}/uv.lock +0 -0
|
Binary file
|
|
@@ -10,7 +10,7 @@ keywords = [ "python", "request",]
|
|
|
10
10
|
classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules",]
|
|
11
11
|
dynamic = [ "version",]
|
|
12
12
|
dependencies = []
|
|
13
|
-
version = "0.1.
|
|
13
|
+
version = "0.1.13"
|
|
14
14
|
[[project.authors]]
|
|
15
15
|
name = "thomasht86"
|
|
16
16
|
|
httpr-0.1.12/benchmark.jpg
DELETED
|
Binary file
|
|
@@ -344,6 +344,10 @@ jobs:
|
|
|
344
344
|
runs-on: ubuntu-latest
|
|
345
345
|
needs: [linux]
|
|
346
346
|
steps:
|
|
347
|
+
- name: Checkout main branch
|
|
348
|
+
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
349
|
+
run: |
|
|
350
|
+
git checkout main
|
|
347
351
|
- uses: actions/checkout@v4
|
|
348
352
|
with:
|
|
349
353
|
fetch-depth: 0
|
|
@@ -367,10 +371,6 @@ jobs:
|
|
|
367
371
|
run: python benchmark/benchmark.py
|
|
368
372
|
- name: Generate image
|
|
369
373
|
run: python benchmark/generate_image.py
|
|
370
|
-
- name: Checkout main branch
|
|
371
|
-
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
372
|
-
run: |
|
|
373
|
-
git checkout main
|
|
374
374
|
- name: Commit generated image if changed
|
|
375
375
|
uses: EndBug/add-and-commit@v9
|
|
376
376
|
with:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|