https://github.com/nekitdev/async-extensions
Asynchronous extensions.
https://github.com/nekitdev/async-extensions
async extensions python
Last synced: about 2 months ago
JSON representation
Asynchronous extensions.
- Host: GitHub
- URL: https://github.com/nekitdev/async-extensions
- Owner: nekitdev
- License: mit
- Created: 2023-01-29T03:27:03.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-23T12:39:51.000Z (almost 2 years ago)
- Last Synced: 2025-10-11T17:08:48.705Z (6 months ago)
- Topics: async, extensions, python
- Language: Python
- Homepage:
- Size: 70.3 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# `async-extensions`
[![License][License Badge]][License]
[![Version][Version Badge]][Package]
[![Downloads][Downloads Badge]][Package]
[![Discord][Discord Badge]][Discord]
[![Check][Check Badge]][Actions]
> *Asynchronous extensions.*
`async-extensions` builds on top of [`anyio`][anyio] to improve backend-agnostic
asynchronous programming.
## Installing
**Python 3.8 or above is required.**
### pip
Installing the library with `pip` is quite simple:
```console
$ pip install async-extensions
```
Alternatively, the library can be installed from source:
```console
$ git clone https://github.com/nekitdev/async-extensions.git
$ cd async-extensions
$ python -m pip install .
```
### poetry
You can add `async-extensions` as a dependency with the following command:
```console
$ poetry add async-extensions
```
Or by directly specifying it in the configuration like so:
```toml
[tool.poetry.dependencies]
async-extensions = "^4.0.0"
```
Alternatively, you can add it directly from the source:
```toml
[tool.poetry.dependencies.async-extensions]
git = "https://github.com/nekitdev/async-extensions.git"
```
## Support
If you need support with the library, you can send an [email][Email]
or refer to the official [Discord server][Discord].
## Changelog
You can find the changelog [here][Changelog].
## Security Policy
You can find the Security Policy of `async-extensions` [here][Security].
## Contributing
If you are interested in contributing to `async-extensions`, make sure to take a look at the
[Contributing Guide][Contributing Guide], as well as the [Code of Conduct][Code of Conduct].
## License
`async-extensions` is licensed under the MIT License terms. See [License][License] for details.
[Email]: mailto:support@nekit.dev
[Discord]: https://nekit.dev/chat
[Actions]: https://github.com/nekitdev/async-extensions/actions
[Changelog]: https://github.com/nekitdev/async-extensions/blob/main/CHANGELOG.md
[Code of Conduct]: https://github.com/nekitdev/async-extensions/blob/main/CODE_OF_CONDUCT.md
[Contributing Guide]: https://github.com/nekitdev/async-extensions/blob/main/CONTRIBUTING.md
[Security]: https://github.com/nekitdev/async-extensions/blob/main/SECURITY.md
[License]: https://github.com/nekitdev/async-extensions/blob/main/LICENSE
[Package]: https://pypi.org/project/async-extensions
[Discord Badge]: https://img.shields.io/badge/chat-discord-5865f2
[License Badge]: https://img.shields.io/pypi/l/async-extensions
[Version Badge]: https://img.shields.io/pypi/v/async-extensions
[Downloads Badge]: https://img.shields.io/pypi/dm/async-extensions
[Check Badge]: https://github.com/nekitdev/async-extensions/workflows/check/badge.svg
[anyio]: https://github.com/agronholm/anyio