comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/lib/python3.8/site-packages/anyio-4.5.2.dist-info/METADATA @ 69:33d812a61356

planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author jpayne
date Tue, 18 Mar 2025 17:55:14 -0400
parents
children
comparison
equal deleted inserted replaced
67:0e9998148a16 69:33d812a61356
1 Metadata-Version: 2.1
2 Name: anyio
3 Version: 4.5.2
4 Summary: High level compatibility layer for multiple asynchronous event loop implementations
5 Author-email: Alex Grönholm <alex.gronholm@nextday.fi>
6 License: MIT
7 Project-URL: Documentation, https://anyio.readthedocs.io/en/latest/
8 Project-URL: Changelog, https://anyio.readthedocs.io/en/stable/versionhistory.html
9 Project-URL: Source code, https://github.com/agronholm/anyio
10 Project-URL: Issue tracker, https://github.com/agronholm/anyio/issues
11 Classifier: Development Status :: 5 - Production/Stable
12 Classifier: Intended Audience :: Developers
13 Classifier: License :: OSI Approved :: MIT License
14 Classifier: Framework :: AnyIO
15 Classifier: Typing :: Typed
16 Classifier: Programming Language :: Python
17 Classifier: Programming Language :: Python :: 3
18 Classifier: Programming Language :: Python :: 3.8
19 Classifier: Programming Language :: Python :: 3.9
20 Classifier: Programming Language :: Python :: 3.10
21 Classifier: Programming Language :: Python :: 3.11
22 Classifier: Programming Language :: Python :: 3.12
23 Classifier: Programming Language :: Python :: 3.13
24 Requires-Python: >=3.8
25 Description-Content-Type: text/x-rst
26 License-File: LICENSE
27 Requires-Dist: idna >=2.8
28 Requires-Dist: sniffio >=1.1
29 Requires-Dist: exceptiongroup >=1.0.2 ; python_version < "3.11"
30 Requires-Dist: typing-extensions >=4.1 ; python_version < "3.11"
31 Provides-Extra: doc
32 Requires-Dist: packaging ; extra == 'doc'
33 Requires-Dist: Sphinx ~=7.4 ; extra == 'doc'
34 Requires-Dist: sphinx-rtd-theme ; extra == 'doc'
35 Requires-Dist: sphinx-autodoc-typehints >=1.2.0 ; extra == 'doc'
36 Provides-Extra: test
37 Requires-Dist: anyio[trio] ; extra == 'test'
38 Requires-Dist: coverage[toml] >=7 ; extra == 'test'
39 Requires-Dist: exceptiongroup >=1.2.0 ; extra == 'test'
40 Requires-Dist: hypothesis >=4.0 ; extra == 'test'
41 Requires-Dist: psutil >=5.9 ; extra == 'test'
42 Requires-Dist: pytest >=7.0 ; extra == 'test'
43 Requires-Dist: pytest-mock >=3.6.1 ; extra == 'test'
44 Requires-Dist: trustme ; extra == 'test'
45 Requires-Dist: uvloop >=0.21.0b1 ; (platform_python_implementation == "CPython" and platform_system != "Windows") and extra == 'test'
46 Requires-Dist: truststore >=0.9.1 ; (python_version >= "3.10") and extra == 'test'
47 Provides-Extra: trio
48 Requires-Dist: trio >=0.26.1 ; extra == 'trio'
49
50 .. image:: https://github.com/agronholm/anyio/actions/workflows/test.yml/badge.svg
51 :target: https://github.com/agronholm/anyio/actions/workflows/test.yml
52 :alt: Build Status
53 .. image:: https://coveralls.io/repos/github/agronholm/anyio/badge.svg?branch=master
54 :target: https://coveralls.io/github/agronholm/anyio?branch=master
55 :alt: Code Coverage
56 .. image:: https://readthedocs.org/projects/anyio/badge/?version=latest
57 :target: https://anyio.readthedocs.io/en/latest/?badge=latest
58 :alt: Documentation
59 .. image:: https://badges.gitter.im/gitterHQ/gitter.svg
60 :target: https://gitter.im/python-trio/AnyIO
61 :alt: Gitter chat
62
63 AnyIO is an asynchronous networking and concurrency library that works on top of either asyncio_ or
64 trio_. It implements trio-like `structured concurrency`_ (SC) on top of asyncio and works in harmony
65 with the native SC of trio itself.
66
67 Applications and libraries written against AnyIO's API will run unmodified on either asyncio_ or
68 trio_. AnyIO can also be adopted into a library or application incrementally – bit by bit, no full
69 refactoring necessary. It will blend in with the native libraries of your chosen backend.
70
71 Documentation
72 -------------
73
74 View full documentation at: https://anyio.readthedocs.io/
75
76 Features
77 --------
78
79 AnyIO offers the following functionality:
80
81 * Task groups (nurseries_ in trio terminology)
82 * High-level networking (TCP, UDP and UNIX sockets)
83
84 * `Happy eyeballs`_ algorithm for TCP connections (more robust than that of asyncio on Python
85 3.8)
86 * async/await style UDP sockets (unlike asyncio where you still have to use Transports and
87 Protocols)
88
89 * A versatile API for byte streams and object streams
90 * Inter-task synchronization and communication (locks, conditions, events, semaphores, object
91 streams)
92 * Worker threads
93 * Subprocesses
94 * Asynchronous file I/O (using worker threads)
95 * Signal handling
96
97 AnyIO also comes with its own pytest_ plugin which also supports asynchronous fixtures.
98 It even works with the popular Hypothesis_ library.
99
100 .. _asyncio: https://docs.python.org/3/library/asyncio.html
101 .. _trio: https://github.com/python-trio/trio
102 .. _structured concurrency: https://en.wikipedia.org/wiki/Structured_concurrency
103 .. _nurseries: https://trio.readthedocs.io/en/stable/reference-core.html#nurseries-and-spawning
104 .. _Happy eyeballs: https://en.wikipedia.org/wiki/Happy_Eyeballs
105 .. _pytest: https://docs.pytest.org/en/latest/
106 .. _Hypothesis: https://hypothesis.works/