redc 0.1.1.dev1__tar.gz → 0.1.1.dev2__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.
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/.github/workflows/before-all.sh +1 -1
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/CMakeLists.txt +1 -1
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/PKG-INFO +2 -2
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/README.md +1 -1
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/pyproject.toml +1 -1
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/__init__.py +1 -1
- redc-0.1.1.dev1/wheelhouse/redc-0.1.1.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl → redc-0.1.1.dev2/wheelhouse/redc-0.1.1.dev2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- redc-0.1.1.dev1/wheelhouse/redc-0.1.1.dev1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl → redc-0.1.1.dev2/wheelhouse/redc-0.1.1.dev2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- redc-0.1.1.dev1/wheelhouse/redc-0.1.1.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl → redc-0.1.1.dev2/wheelhouse/redc-0.1.1.dev2-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- redc-0.1.1.dev2/wheelhouse/redc-0.1.1.dev2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- redc-0.1.1.dev1/wheelhouse/redc-0.1.1.dev1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl → redc-0.1.1.dev2/wheelhouse/redc-0.1.1.dev2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- redc-0.1.1.dev1/wheelhouse/redc-0.1.1.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/.clang-format +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/.github/workflows/build_wheels.yml +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/.gitignore +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/CMake/PreventInSourceBuild.cmake +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/LICENSE +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/assets/images/redc-logo.png +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/callback.py +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/callbacks.py +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/client.py +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/codes.py +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/exceptions/__init__.py +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/ext/redc.cpp +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/ext/redc.h +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/ext/utils/concurrentqueue.h +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/ext/utils/curl_utils.h +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/response.py +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/utils/__init__.py +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/utils/headers.py +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/utils/http.py +0 -0
- {redc-0.1.1.dev1 → redc-0.1.1.dev2}/redc/utils/json_encoder.py +0 -0
@@ -43,7 +43,7 @@ if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|
43
43
|
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
|
44
44
|
endif()
|
45
45
|
|
46
|
-
nanobind_add_module(redc_ext STABLE_ABI FREE_THREADED LTO redc/ext/redc.cpp)
|
46
|
+
nanobind_add_module(redc_ext STABLE_ABI FREE_THREADED NOMINSIZE LTO redc/ext/redc.cpp)
|
47
47
|
|
48
48
|
target_link_libraries(redc_ext PRIVATE CURL::libcurl)
|
49
49
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: redc
|
3
|
-
Version: 0.1.1.
|
3
|
+
Version: 0.1.1.dev2
|
4
4
|
Summary: RedC is a high-performance, asynchronous HTTP client library for Python, built on top of the powerful curl library
|
5
5
|
Keywords: asyncio,http,client,http-client,curl,libcurl
|
6
6
|
Author-Email: AYMEN Mohammed <let.me.code.safe@gmail.com>
|
@@ -14,7 +14,7 @@ Description-Content-Type: text/markdown
|
|
14
14
|
<img src="https://raw.githubusercontent.com/AYMENJD/redc/refs/heads/main/assets/images/redc-logo.png">
|
15
15
|
</div>
|
16
16
|
|
17
|
-
[](https://pypi.org/project/RedC) [](https://pypi.org/project/RedC) [](https://curl.se/ch/8.12.0.html) [](https://pepy.tech/project/redc)
|
18
18
|
|
19
19
|
**RedC** is a **high-performance**, asynchronous **HTTP** client library for **Python**, built on top of the powerful **curl** library. It provides a simple and intuitive interface for making HTTP requests and handling responses
|
20
20
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<img src="https://raw.githubusercontent.com/AYMENJD/redc/refs/heads/main/assets/images/redc-logo.png">
|
3
3
|
</div>
|
4
4
|
|
5
|
-
[](https://pypi.org/project/RedC) [](https://pypi.org/project/RedC) [](https://curl.se/ch/8.12.0.html) [](https://pepy.tech/project/redc)
|
6
6
|
|
7
7
|
**RedC** is a **high-performance**, asynchronous **HTTP** client library for **Python**, built on top of the powerful **curl** library. It provides a simple and intuitive interface for making HTTP requests and handling responses
|
8
8
|
|
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "redc"
|
7
|
-
version = "0.1.1.
|
7
|
+
version = "0.1.1.dev2"
|
8
8
|
description = "RedC is a high-performance, asynchronous HTTP client library for Python, built on top of the powerful curl library"
|
9
9
|
readme = "README.md"
|
10
10
|
authors = [{ name = "AYMEN Mohammed", email = "let.me.code.safe@gmail.com" }]
|
index a997b3a..5d96bde 100644
|
|
Binary file
|
index 631cec1..d382f14 100644
|
|
Binary file
|
index a088e2c..0812fe4 100644
|
|
Binary file
|
Binary file
|
index 84f9bd4..6187a89 100644
|
|
Binary file
|
Binary file
|
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
|