diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2020-07-21 17:15:07 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2020-07-21 17:15:07 +0000 |
commit | a961366cfbde9a8e7b1961882ead047cc297082d (patch) | |
tree | 858aaee675689febc392a3b8805776575ff567b2 /devel/Makefile | |
parent | c10f3fad1bf143903187024b58a6229c85dfe286 (diff) | |
download | ports-a961366cfbde9a8e7b1961882ead047cc297082d.tar.gz ports-a961366cfbde9a8e7b1961882ead047cc297082d.zip |
- Add devel/py-trio: Friendly Python library for async concurrency and I/O
The Trio project’s goal is to produce a production-quality,
permissively licensed, async/await-native I/O library for Python.
Like all async libraries, its main purpose is to help you write
programs that do multiple things at the same time with parallelized
I/O. A web spider that wants to fetch lots of pages in parallel, a
web server that needs to juggle lots of downloads and websocket
connections at the same time, a process supervisor monitoring
multiple subprocesses… that sort of thing. Compared to other
libraries, Trio attempts to distinguish itself with an obsessive
focus on usability and correctness. Concurrency is complicated; we
try to make it easy to get things right.
WWW: https://pypi.org/project/trio/
Notes
Notes:
svn path=/head/; revision=542760
Diffstat (limited to 'devel/Makefile')
-rw-r--r-- | devel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 438c30a87dbb..5f03a4ad3c3b 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5162,6 +5162,7 @@ SUBDIR += py-transitions SUBDIR += py-tree-format SUBDIR += py-trimesh + SUBDIR += py-trio SUBDIR += py-trollius SUBDIR += py-ttictoc SUBDIR += py-ttystatus |