Updated script that can be controled by Nodejs web app

This commit is contained in:
mac OS
2024-11-25 12:24:18 +07:00
parent c440eda1f4
commit 8b0ab2bd3a
8662 changed files with 1803808 additions and 34 deletions
+23
View File
@@ -0,0 +1,23 @@
# This is a public namespace, so we don't want to expose any non-underscored
# attributes that aren't actually part of our public API. But it's very
# annoying to carefully always use underscored names for module-level
# temporaries, imports, etc. when implementing the module. So we put the
# implementation in an underscored module, and then re-export the public parts
# here.
# Uses `from x import y as y` for compatibility with `pyright --verifytypes` (#2625)
from ._abc import (
AsyncResource as AsyncResource,
Channel as Channel,
Clock as Clock,
HalfCloseableStream as HalfCloseableStream,
HostnameResolver as HostnameResolver,
Instrument as Instrument,
Listener as Listener,
ReceiveChannel as ReceiveChannel,
ReceiveStream as ReceiveStream,
SendChannel as SendChannel,
SendStream as SendStream,
SocketFactory as SocketFactory,
Stream as Stream,
)