Asyncio-cancel-token:Task cancellation pattern for asyncio applications

asyncio-cancel-token的Python项目详细描述


#异步取消标记

[![在https://gitter.im/ethereum/asyncio-cancel-token](https://badges.gitter.im/ethereum/asyncio-cancel-token.svg)](https://gitter.im/ethereum/asyncio-cancel-token?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge加入聊天室) [![生成状态](https://circleci.com/gh/ethereum/asyncio-cancel-token.svg?style=shield)](https://circleci.com/gh/ethereum/asyncio-cancel-token) [![PYPI版本](https://badge.fury.io/py/asyncio-cancel-token.svg)](https://badge.fury.io/py/asyncio-cancel-token) [![python版本](https://img.shields.io/pypi/pyversions/asyncio-cancel-token.svg)](https://pypi.python.org/pypi/asyncio-cancel-token) [![文档生成](https://readthedocs.org/projects/asyncio-cancel-token/badge/?version=latest)](http://asyncio-cancel-token.readthedocs.io/en/latest/?徽章=最新)

异步应用程序的任务取消模式。

阅读[关于readthedocs的文档](https://asyncio-cancel-token.readthedocs.io/)中的更多内容。[查看更改日志](https://asyncio-cancel-token.readthedocs.io/en/latest/releases.html)。

##快速启动

`sh pip install asyncio-cancel-token `

##开发人员设置

如果您想破解Asyncio Cancel令牌,请查看 [以太坊开发战术手册](https://github.com/pipermerriam/ethereum-dev-tactical-manual) 有关我们如何做的信息:

  • 测试
  • 拉取请求
  • 代码样式
  • 文档

###开发环境设置

您可以使用以下命令设置开发环境:

`sh git clone git@github.com:ethereum/asyncio-cancel-token.git cd asyncio-cancel-token virtualenv -p python3 venv . venv/bin/activate pip install -e .[dev] `

###测试设置

在开发过程中,您可能希望在每次保存文件时都运行测试。

更改文件时显示flake8错误:

`sh # Test flake8 when-changed-v-s-r-1 cancel_token/ tests/ -c "clear; flake8 cancel_token tests && echo 'flake8 success' || echo 'error'" `

在一个命令中运行多进程测试,但不使用颜色:

`sh # in the project root: pytest --numprocesses=4--looponfail--maxfail=1 # the same thing, succinctly: pytest -n 4 -f--maxfail=1 `

在一个线程中运行,带有颜色和桌面通知:

`sh cd venv ptw --onfail"notify-send-t 5000 'Test failure ⚠⚠⚠⚠⚠' 'python 3 test on asyncio-cancel-token failed'" ../tests../cancel_token `

###释放设置

对于类似Debian的系统: ` apt install pandoc `

发布新版本:

`sh make release bump=$$VERSION_PART_TO_BUMP$$ `

####如何增强版本

此回购协议的版本格式为稳定的{major}.{minor}.{patch},并且 {major}.{minor}.{patch}-{stage}.{devnum}表示不稳定(stage可以是alpha或beta)。

要发布第行的下一个版本,请指定要凹凸的部分, 像make release bump=minormake release bump=devnum

如果您是beta版本,则make release bump=stage将切换到稳定版本。

若要在当前版本稳定时发布不稳定版本,请指定 新版本,如make release bump=”–新版本4.0.0-alpha.1 devnum“

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java操作系统。getSystemCpuLoad()始终返回相同的值   java如何在Eclipse中运行单个JUnit测试方法?   Android java。lang.OutOfMemoryError仅适用于三星设备   java如何为mysql或postgresql实现odata producer   类路径如何运行java。扩展另一个目录中的类的类文件?   安卓如何从java创建AsymmetricKeyParameter。安全公钥   java如何正确返回基于用户ID显示数据的arraylist?   将pdfDocument转换为字节[]流PDFBox Java   java Hibernate LazyInitializationException将ReferenceColumnName添加到@CollectionTable中的@JoinColumn后发生异常   java使用Hibernate JPA 2.1将应用程序部署到IBM WebSphere时会出现NullPointerException   枚举内的java映射   java在没有NPE的情况下比较两个空对象的值   java Spring注解@Value我缺少什么?