Changed code to support older Python versions
This commit is contained in:
parent
eb92d2d36f
commit
582458cdd0
5027 changed files with 794942 additions and 4 deletions
|
|
@ -0,0 +1 @@
|
|||
pip
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2019 Justin Bronder
|
||||
|
||||
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.
|
||||
|
|
@ -0,0 +1,100 @@
|
|||
Metadata-Version: 2.1
|
||||
Name: asyncio-dgram
|
||||
Version: 2.2.0
|
||||
Summary: Higher level Datagram support for Asyncio
|
||||
Home-page: https://github.com/jsbronder/asyncio-dgram
|
||||
Author: Justin Bronder
|
||||
Author-email: jsbronder@cold-front.org
|
||||
License: MIT
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Framework :: AsyncIO
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: 3.12
|
||||
Requires-Python: >=3.6
|
||||
Description-Content-Type: text/markdown
|
||||
License-File: LICENSE
|
||||
Requires-Dist: setuptools
|
||||
Provides-Extra: test
|
||||
Requires-Dist: black >=20.8b1 ; extra == 'test'
|
||||
Requires-Dist: flake8 >=3.8.3 ; extra == 'test'
|
||||
Requires-Dist: mypy-extensions >=0.4.3 ; extra == 'test'
|
||||
Requires-Dist: mypy >=0.812 ; extra == 'test'
|
||||
Requires-Dist: pytest-asyncio >=0.14.0 ; extra == 'test'
|
||||
Requires-Dist: pytest >=5.4.3 ; extra == 'test'
|
||||
Requires-Dist: typed-ast >=1.4.3 ; extra == 'test'
|
||||
Requires-Dist: typing-extensions >=3.10.0.0 ; extra == 'test'
|
||||
|
||||
[](https://github.com/jsbronder/asyncio-dgram/actions)
|
||||
|
||||
# Higher level Datagram support for Asyncio
|
||||
Simple wrappers that allow you to `await read()` from datagrams as suggested
|
||||
by Guido van Rossum
|
||||
[here](https://github.com/python/asyncio/pull/321#issuecomment-187022351). I
|
||||
frequently found myself having to inherit from `asyncio.DatagramProtocol` and
|
||||
implement this over and over.
|
||||
|
||||
# Design
|
||||
The goal of this package is to make implementing common patterns that use datagrams
|
||||
simple and straight-forward while still supporting more esoteric options. This is done
|
||||
by taking an opinionated stance on the API that differs from parts of asyncio. For instance,
|
||||
rather than exposing a function like
|
||||
[create\_datagram\_endpoint](https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.loop.create_datagram_endpoint)
|
||||
which supports many use-cases and has conflicting parameters, `asyncio_dgram`
|
||||
only provides three functions for creating a stream:
|
||||
|
||||
- `connect((host, port))`: Creates a datagram endpoint which can only
|
||||
communicate with the endpoint it connected to.
|
||||
- `bind((host, port))`: Creates a datagram endpoint that can communicate
|
||||
with anyone, but must specified the destination address every time it
|
||||
sends.
|
||||
- `from_socket(sock)`: If the above two functions are not sufficient, then
|
||||
`asyncio_dgram` simply lets the caller setup the socket as they see fit.
|
||||
|
||||
|
||||
# Example UDP echo client and server
|
||||
Following the example of asyncio documentation, here's what a UDP echo client
|
||||
and server would look like.
|
||||
```python
|
||||
import asyncio
|
||||
|
||||
import asyncio_dgram
|
||||
|
||||
|
||||
async def udp_echo_client():
|
||||
stream = await asyncio_dgram.connect(("127.0.0.1", 8888))
|
||||
|
||||
await stream.send(b"Hello World!")
|
||||
data, remote_addr = await stream.recv()
|
||||
print(f"Client received: {data.decode()!r}")
|
||||
|
||||
stream.close()
|
||||
|
||||
|
||||
async def udp_echo_server():
|
||||
stream = await asyncio_dgram.bind(("127.0.0.1", 8888))
|
||||
|
||||
print(f"Serving on {stream.sockname}")
|
||||
|
||||
data, remote_addr = await stream.recv()
|
||||
print(f"Echoing {data.decode()!r}")
|
||||
await stream.send(data, remote_addr)
|
||||
|
||||
await asyncio.sleep(0.5)
|
||||
print(f"Shutting down server")
|
||||
|
||||
|
||||
def main():
|
||||
loop = asyncio.get_event_loop()
|
||||
loop.run_until_complete(asyncio.gather(udp_echo_server(), udp_echo_client()))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
```
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
asyncio_dgram-2.2.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
asyncio_dgram-2.2.0.dist-info/LICENSE,sha256=8QluGVYvSjH2KxV9s0fkcELVhteMO1TGF0prEWlxus4,1071
|
||||
asyncio_dgram-2.2.0.dist-info/METADATA,sha256=hMEXwjwpXuw-Lv5z7p25zkqbN4FQLpcIcf8ZjVSsrls,3721
|
||||
asyncio_dgram-2.2.0.dist-info/RECORD,,
|
||||
asyncio_dgram-2.2.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
||||
asyncio_dgram-2.2.0.dist-info/top_level.txt,sha256=I7qyH95HXXgtqKdUEwWuCFWhndoMCGT1bxJrPhuNSlA,14
|
||||
asyncio_dgram/__init__.py,sha256=UkWntWTUSDmcNQy5SQ8jZCrCxMqQCgOFGfJDFDxZD0I,27
|
||||
asyncio_dgram/__pycache__/__init__.cpython-311.pyc,,
|
||||
asyncio_dgram/__pycache__/aio.cpython-311.pyc,,
|
||||
asyncio_dgram/aio.py,sha256=YLASkgbg0r5W38eUbXp1ffQxjDYOneVWsRVa-I6vD5Y,10448
|
||||
asyncio_dgram/aio.pyi,sha256=1Ezapd7mw93WLaIWq_RMkH646YcO2Ex8xx5tGt5RIgs,2130
|
||||
asyncio_dgram/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.43.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
asyncio_dgram
|
||||
Loading…
Add table
Add a link
Reference in a new issue