python无效语法怎么解决_带有异步def的Python [无效语法]

Asynchronous requests were introduced to Python in v3.3,如果您运行的是v3.3之前的Python(包括v2.X),则必须安装更高版本的Python.

pip install asyncio

async和await关键字仅对Python 3.5或更高版本有效.如果您使用的是Python 3.3或3.4,则需要对代码进行以下更改:

>使用@ asyncio.coroutine装饰器而不是async语句:

async def func():

pass

# replace to:

@asyncio.coroutine

def func():

pass

>使用yield from而不是await:

await coroutine()

# replace to:

yield from coroutine()

这是您的函数需要更改为的示例(如果您使用的是3.3-3.4版本):

import asyncio

@asyncio.coroutine

def background_loop():

yield from client.wait_until_ready()

while not client.is_closed:

channel = client.get_channel("************")

messages = ["Hello!", "How are you doing?", "Testing!!"]

yield from client.send_message(channel, random.choice(messages))

yield from asyncio.sleep(120)

较新版本的Python 3仍支持上述语法,但是如果不需要支持Python 3.3-3.4,则建议使用await和async.您可以参考此documentation,这是一个简短的代码段:

The async def type of coroutine was added in Python 3.5, and is

recommended if there is no need to support older Python versions.

在旁边:

discord.py当前支持3.4.2-3.6.6(截至2019年1月,它不支持3.3-3.4.1,3.7).

对于使用discord.py进行开发,我建议使用discord.py rewrite分支:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值