ClericPy / ichrome

Chrome controller for Humans, based on Chrome Devtools Protocol(CDP) and python3.7+.
https://pypi.org/project/ichrome/
MIT License
228 stars 29 forks source link

async with AsyncChromeDaemon() as cd #56

Closed willwang-cv closed 3 years ago

willwang-cv commented 3 years ago

非要用with吗?用完之后不想close怎么办

ClericPy commented 3 years ago

async with 拆开用就好了

cd = AsyncChromeDaemon()
await cd.__aenter__()
...
...
await cd.__aexit__(None, None, None)