File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44
55[project ]
66name = " redc"
7- version = " 0.1.3 "
7+ version = " 0.1.4 "
88description = " RedC is a high-performance, asynchronous HTTP client library for Python, built on top of the powerful curl library"
99readme = " README.md"
1010authors = [{ name = " AYMEN Mohammed" , email = " let.me.code.safe@gmail.com" }]
Original file line number Diff line number Diff line change 1- from .callbacks import StreamCallback , ProgressCallback
1+ from . import utils
2+ from .callbacks import ProgressCallback , StreamCallback
23from .client import Client
34from .codes import HTTPStatus
45from .exceptions import HTTPError
56from .response import Response
6- from . import utils
77
88__all__ = [
9+ "utils" ,
10+ "ProgressCallback" ,
11+ "StreamCallback" ,
912 "Client" ,
10- "Response" ,
11- "HTTPError" ,
1213 "HTTPStatus" ,
13- "StreamCallback" ,
14- "ProgressCallback" ,
15- "utils" ,
14+ "HTTPError" ,
15+ "Response" ,
1616]
1717
18- __version__ = "0.1.3 "
18+ __version__ = "0.1.4 "
1919__copyright__ = "Copyright (c) 2025 RedC, AYMENJD"
2020__license__ = "MIT License"
2121
You can’t perform that action at this time.
0 commit comments