-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
__init__.pyi
48 lines (47 loc) · 1.28 KB
/
__init__.pyi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# FIXME: aio_pika 7.0 comes with types, we might want to upgrade
# https://github.com/mosquito/aio-pika/blob/master/CHANGELOG.md#700
from aio_pika import patterns, pool
from aio_pika.channel import Channel
from aio_pika.connection import Connection, connect
from aio_pika.exceptions import AMQPException, MessageProcessError
from aio_pika.exchange import Exchange, ExchangeType
from aio_pika.message import DeliveryMode, IncomingMessage, Message
from aio_pika.queue import Queue
from aio_pika.robust_channel import RobustChannel
from aio_pika.robust_connection import RobustConnection, connect_robust
from aio_pika.robust_exchange import RobustExchange
from aio_pika.robust_queue import RobustQueue
from aio_pika.version import (
__author__,
__version__,
author_info,
package_info,
package_license,
version_info,
)
__all__ = (
"__author__",
"__version__",
"author_info",
"connect",
"connect_robust",
"package_info",
"package_license",
"patterns",
"pool",
"version_info",
"AMQPException",
"Channel",
"Connection",
"DeliveryMode",
"Exchange",
"ExchangeType",
"IncomingMessage",
"Message",
"MessageProcessError",
"Queue",
"RobustChannel",
"RobustConnection",
"RobustExchange",
"RobustQueue",
)