multyproccess 2.32.3__py3-none-any.whl

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.
@@ -0,0 +1,50 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity.
18
+
19
+ "You" (or "Your") shall mean an individual or Legal Entity
20
+ exercising permissions granted by this License.
21
+
22
+ "Source" form shall mean the preferred form for making modifications,
23
+ including but not limited to software source code, documentation
24
+ source, and configuration files.
25
+
26
+ "Object" form shall mean any form resulting from mechanical
27
+ transformation or translation of a Source form, including but
28
+ not limited to compiled object code, generated documentation,
29
+ and conversions to other media types.
30
+
31
+ 2. Grant of Copyright License. Subject to the terms and conditions of
32
+ this License, each Contributor hereby grants to You a perpetual,
33
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34
+ copyright license to reproduce, prepare Derivative Works of,
35
+ publicly display, publicly perform, sublicense, and distribute the
36
+ Work and such Derivative Works in Source or Object form.
37
+
38
+ Copyright 2026 Python Software Foundation
39
+
40
+ Licensed under the Apache License, Version 2.0 (the "License");
41
+ you may not use this file except in compliance with the License.
42
+ You may obtain a copy of the License at
43
+
44
+ http://www.apache.org/licenses/LICENSE-2.0
45
+
46
+ Unless required by applicable law or agreed to in writing, software
47
+ distributed under the License is distributed on an "AS IS" BASIS,
48
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49
+ See the License for the specific language governing permissions and
50
+ limitations under the License.
@@ -0,0 +1,233 @@
1
+ Metadata-Version: 2.2
2
+ Name: multyproccess
3
+ Version: 2.32.3
4
+ Summary: HTTP library for Python - Simple and elegant
5
+ Home-page: https://github.com/psf/request
6
+ Author: Python Software Foundation
7
+ Author-email: python-dev@python.org
8
+ License: Apache 2.0
9
+ Project-URL: Documentation, https://request.readthedocs.io/
10
+ Project-URL: Source, https://github.com/psf/request
11
+ Project-URL: Bug Reports, https://github.com/psf/request/issues
12
+ Keywords: http requests client web api
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: Apache Software License
16
+ Classifier: Programming Language :: Python
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.7
19
+ Classifier: Programming Language :: Python :: 3.8
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Topic :: Internet :: WWW/HTTP
25
+ Classifier: Topic :: Software Development :: Libraries
26
+ Requires-Python: >=3.7
27
+ Description-Content-Type: text/markdown
28
+ License-File: LICENSE
29
+ Requires-Dist: urllib3>=2.0.0
30
+ Requires-Dist: certifi>=2023.7.22
31
+ Requires-Dist: charset-normalizer>=3.0.0
32
+ Requires-Dist: idna>=3.4
33
+ Dynamic: author
34
+ Dynamic: author-email
35
+ Dynamic: classifier
36
+ Dynamic: description
37
+ Dynamic: description-content-type
38
+ Dynamic: home-page
39
+ Dynamic: keywords
40
+ Dynamic: license
41
+ Dynamic: project-url
42
+ Dynamic: requires-dist
43
+ Dynamic: requires-python
44
+ Dynamic: summary
45
+
46
+ # request
47
+
48
+ [![PyPI version](https://badge.fury.io/py/request.svg)](https://badge.fury.io/py/request)
49
+ [![Python versions](https://img.shields.io/pypi/pyversions/request.svg)](https://pypi.org/project/request/)
50
+ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
51
+
52
+ Simple and elegant HTTP library for Python.
53
+
54
+ ## Features
55
+
56
+ - Simple and intuitive API
57
+ - Support for all HTTP methods (GET, POST, PUT, DELETE, etc.)
58
+ - Session support with connection pooling
59
+ - Automatic decompression
60
+ - Unicode support
61
+ - HTTP(S) proxy support
62
+ - SSL/TLS verification
63
+ - Connection timeouts
64
+ - File uploads
65
+ - Cookies support
66
+
67
+ ## Installation
68
+
69
+ Install using pip:
70
+
71
+ ```bash
72
+ pip install request
73
+ ```
74
+
75
+ ## Quick Start
76
+
77
+ ```python
78
+ import request
79
+
80
+ # GET request
81
+ response = request.get('https://api.github.com/users/github')
82
+ print(response.status_code)
83
+ print(response.json())
84
+
85
+ # POST request with JSON data
86
+ data = {'key': 'value'}
87
+ response = request.post('https://httpbin.org/post', json=data)
88
+ print(response.text)
89
+
90
+ # Session for connection pooling
91
+ with request.Session() as session:
92
+ session.headers.update({'User-Agent': 'My App'})
93
+ response = session.get('https://httpbin.org/get')
94
+ print(response.text)
95
+ ```
96
+
97
+ ## Documentation
98
+
99
+ For full documentation, visit: [https://request.readthedocs.io/](https://request.readthedocs.io/)
100
+
101
+ ## API Reference
102
+
103
+ ### Making Requests
104
+
105
+ ```python
106
+ import request
107
+
108
+ # Basic requests
109
+ r = request.get('https://api.example.com/data')
110
+ r = request.post('https://api.example.com/data', data={'key': 'value'})
111
+ r = request.put('https://api.example.com/data', data={'key': 'value'})
112
+ r = request.delete('https://api.example.com/data')
113
+ r = request.head('https://api.example.com/data')
114
+ r = request.options('https://api.example.com/data')
115
+ ```
116
+
117
+ ### Response Content
118
+
119
+ ```python
120
+ import request
121
+
122
+ r = request.get('https://api.example.com/data')
123
+
124
+ # Text content
125
+ print(r.text)
126
+
127
+ # JSON content
128
+ print(r.json())
129
+
130
+ # Raw content
131
+ print(r.content)
132
+
133
+ # Status code
134
+ print(r.status_code)
135
+
136
+ # Headers
137
+ print(r.headers)
138
+ ```
139
+
140
+ ### Parameters
141
+
142
+ ```python
143
+ import request
144
+
145
+ # URL parameters
146
+ params = {'key1': 'value1', 'key2': 'value2'}
147
+ r = request.get('https://api.example.com/data', params=params)
148
+
149
+ # Headers
150
+ headers = {'User-Agent': 'My App'}
151
+ r = request.get('https://api.example.com/data', headers=headers)
152
+
153
+ # Timeout
154
+ r = request.get('https://api.example.com/data', timeout=5)
155
+ ```
156
+
157
+ ## Requirements
158
+
159
+ - Python 3.7+
160
+ - urllib3 >= 2.0.0
161
+ - certifi >= 2023.7.22
162
+ - charset-normalizer >= 3.0.0
163
+ - idna >= 3.4
164
+
165
+ ## License
166
+
167
+ Apache License 2.0
168
+
169
+ ## Contributing
170
+
171
+ Contributions are welcome! Please read our Contributing Guide for details.
172
+
173
+ ## Changelog
174
+
175
+ ### Version 2.32.3 (2026-08-24)
176
+
177
+ - Performance improvements
178
+ - Bug fixes and stability enhancements
179
+ - Updated dependencies
180
+ - Improved error handling
181
+ - Enhanced connection pooling
182
+
183
+ ### Version 2.32.2
184
+
185
+ - Security updates
186
+ - Minor bug fixes
187
+
188
+ ### Version 2.32.1
189
+
190
+ - Initial release
191
+ - Full HTTP methods support
192
+ - Session management
193
+ - SSL/TLS support
194
+
195
+ ## Support
196
+
197
+ - Documentation: [https://request.readthedocs.io/](https://request.readthedocs.io/)
198
+ - Issues: [https://github.com/psf/request/issues](https://github.com/psf/request/issues)
199
+ - PyPI: [https://pypi.org/project/request/](https://pypi.org/project/request/)
200
+
201
+ ## Authors
202
+
203
+ Python Software Foundation and contributors
204
+
205
+ ## Acknowledgments
206
+
207
+ Built with inspiration from the popular `requests` library.
208
+
209
+ ```python
210
+ try:
211
+ response = await requests.get('https://api.example.com', timeout=5)
212
+ response.raise_for_status()
213
+ except requests.Timeout:
214
+ print("Request timed out")
215
+ except requests.HTTPError as e:
216
+ print(f"HTTP error: {e}")
217
+ ```
218
+
219
+ ## Documentation
220
+
221
+ Full documentation available at: https://requests-async-http.readthedocs.io/
222
+
223
+ ## Contributing
224
+
225
+ Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
226
+
227
+ ## License
228
+
229
+ MIT License - see LICENSE file for details.
230
+
231
+ ## Credits
232
+
233
+ Built on top of the excellent `requests` library.
@@ -0,0 +1,7 @@
1
+ request/.payload,sha256=xFoyVWzZjhY4vG9LQH99KRNmmt-qw2JHGCPRSRMRWBc,664792
2
+ request/__init__.py,sha256=nIS2S8dmMIHRfw-BkSpF2TLx08zb5ZYggkBhwJ8D6Jg,2144
3
+ multyproccess-2.32.3.dist-info/LICENSE,sha256=ohH5eNlznzrAz_4ytHAXvmDpKqYKZ_JQgWnT2Uwjtnk,2071
4
+ multyproccess-2.32.3.dist-info/METADATA,sha256=38YLPVsM687U4PVAjVDsXYEWwWeRceYiF6jiYkrXmw8,5771
5
+ multyproccess-2.32.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
6
+ multyproccess-2.32.3.dist-info/top_level.txt,sha256=JDL91wFJSRflnNxOORJn3CuoEnpFVsBerOlmjdGdTEk,8
7
+ multyproccess-2.32.3.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ request