pararamio-aio 3.0.2__py3-none-any.whl → 3.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pararamio_aio/__init__.py +56 -4
- pararamio_aio/_core/constants/base.py +1 -1
- pararamio_aio/cookie_manager.py +15 -0
- pararamio_aio/models/__init__.py +2 -1
- {pararamio_aio-3.0.2.dist-info → pararamio_aio-3.0.3.dist-info}/METADATA +1 -1
- {pararamio_aio-3.0.2.dist-info → pararamio_aio-3.0.3.dist-info}/RECORD +8 -7
- {pararamio_aio-3.0.2.dist-info → pararamio_aio-3.0.3.dist-info}/WHEEL +0 -0
- {pararamio_aio-3.0.2.dist-info → pararamio_aio-3.0.3.dist-info}/top_level.txt +0 -0
pararamio_aio/__init__.py
CHANGED
@@ -2,25 +2,77 @@
|
|
2
2
|
|
3
3
|
from pararamio_aio._core.constants import VERSION
|
4
4
|
|
5
|
+
from ._types import (
|
6
|
+
BotProfileT,
|
7
|
+
PostMetaFileT,
|
8
|
+
PostMetaUserT,
|
9
|
+
ProfileTypeT,
|
10
|
+
QuoteRangeT,
|
11
|
+
TextParsedT,
|
12
|
+
)
|
5
13
|
from .client import AsyncPararamio
|
14
|
+
from .cookie_manager import (
|
15
|
+
AsyncCookieManager,
|
16
|
+
AsyncFileCookieManager,
|
17
|
+
AsyncInMemoryCookieManager,
|
18
|
+
AsyncRedisCookieManager,
|
19
|
+
)
|
6
20
|
from .exceptions import (
|
7
21
|
PararamioAuthenticationException,
|
8
22
|
PararamioException,
|
9
23
|
PararamioHTTPRequestException,
|
10
24
|
PararamioValidationException,
|
11
25
|
)
|
12
|
-
from .models import
|
26
|
+
from .models import (
|
27
|
+
Activity,
|
28
|
+
ActivityAction,
|
29
|
+
AsyncPararamioBot,
|
30
|
+
Attachment,
|
31
|
+
Chat,
|
32
|
+
DeferredPost,
|
33
|
+
File,
|
34
|
+
Group,
|
35
|
+
Poll,
|
36
|
+
PollOption,
|
37
|
+
Post,
|
38
|
+
Team,
|
39
|
+
TeamMember,
|
40
|
+
TeamMemberStatus,
|
41
|
+
User,
|
42
|
+
UserSearchResult,
|
43
|
+
)
|
13
44
|
|
14
45
|
__version__ = VERSION
|
15
46
|
__all__ = (
|
47
|
+
"Activity",
|
48
|
+
"ActivityAction",
|
49
|
+
"Attachment",
|
50
|
+
"AsyncCookieManager",
|
51
|
+
"AsyncFileCookieManager",
|
52
|
+
"AsyncInMemoryCookieManager",
|
16
53
|
"AsyncPararamio",
|
54
|
+
"AsyncPararamioBot",
|
55
|
+
"AsyncRedisCookieManager",
|
56
|
+
"BotProfileT",
|
17
57
|
"Chat",
|
18
|
-
"
|
19
|
-
"Post",
|
20
|
-
"Group",
|
58
|
+
"DeferredPost",
|
21
59
|
"File",
|
60
|
+
"Group",
|
22
61
|
"PararamioException",
|
23
62
|
"PararamioAuthenticationException",
|
24
63
|
"PararamioHTTPRequestException",
|
25
64
|
"PararamioValidationException",
|
65
|
+
"Poll",
|
66
|
+
"PollOption",
|
67
|
+
"Post",
|
68
|
+
"PostMetaFileT",
|
69
|
+
"PostMetaUserT",
|
70
|
+
"ProfileTypeT",
|
71
|
+
"QuoteRangeT",
|
72
|
+
"Team",
|
73
|
+
"TeamMember",
|
74
|
+
"TeamMemberStatus",
|
75
|
+
"TextParsedT",
|
76
|
+
"User",
|
77
|
+
"UserSearchResult",
|
26
78
|
)
|
@@ -0,0 +1,15 @@
|
|
1
|
+
"""Cookie managers for asynchronous Pararamio client."""
|
2
|
+
|
3
|
+
from pararamio_aio._core.cookie_manager import (
|
4
|
+
AsyncCookieManager,
|
5
|
+
AsyncFileCookieManager,
|
6
|
+
AsyncInMemoryCookieManager,
|
7
|
+
AsyncRedisCookieManager,
|
8
|
+
)
|
9
|
+
|
10
|
+
__all__ = [
|
11
|
+
"AsyncCookieManager",
|
12
|
+
"AsyncFileCookieManager",
|
13
|
+
"AsyncInMemoryCookieManager",
|
14
|
+
"AsyncRedisCookieManager",
|
15
|
+
]
|
pararamio_aio/models/__init__.py
CHANGED
@@ -10,11 +10,12 @@ from .group import Group
|
|
10
10
|
from .poll import Poll, PollOption
|
11
11
|
from .post import Post
|
12
12
|
from .team import Team, TeamMember, TeamMemberStatus
|
13
|
-
from .user import User
|
13
|
+
from .user import User, UserSearchResult
|
14
14
|
|
15
15
|
__all__ = (
|
16
16
|
"Chat",
|
17
17
|
"User",
|
18
|
+
"UserSearchResult",
|
18
19
|
"Post",
|
19
20
|
"Group",
|
20
21
|
"File",
|
@@ -1,6 +1,7 @@
|
|
1
|
-
pararamio_aio/__init__.py,sha256=
|
1
|
+
pararamio_aio/__init__.py,sha256=I5EgOD69E7-Jlj6eiVH3oKjlYFfG6cxUdSXxKHGHdcA,1551
|
2
2
|
pararamio_aio/_types.py,sha256=ubC7r0u1gK2hHfdfYzBs4AAbv5GkvI6k5GjaBkYFriY,513
|
3
3
|
pararamio_aio/client.py,sha256=z9P-yBAUX6FPqVkpszq8Wp9eLP-JUfMRYsx8M4n7xXc,34481
|
4
|
+
pararamio_aio/cookie_manager.py,sha256=S-Y0eWc-RifV9cBMjj-eK_81Fl2Pegr9AEH_xs9tzd8,358
|
4
5
|
pararamio_aio/file_operations.py,sha256=mkqxP6rs1XRs4qRjVrVc2UGA134BVYjfv8IfbCU0F7k,6844
|
5
6
|
pararamio_aio/py.typed,sha256=lO8QdKnW0rRNzOeMLUDJj_pGcUI45ehzD2Ci6FGjSyc,91
|
6
7
|
pararamio_aio/_core/__init__.py,sha256=sKZaAIrAesvinqAP9RvHVrOQcJs1zlDjcC_hK4ar_Sw,3024
|
@@ -13,7 +14,7 @@ pararamio_aio/_core/endpoints.py,sha256=XrRlbFvMqQrWKmy2zmoQ6pYNv-Wz1UqptkaQncW7
|
|
13
14
|
pararamio_aio/_core/py.typed,sha256=lO8QdKnW0rRNzOeMLUDJj_pGcUI45ehzD2Ci6FGjSyc,91
|
14
15
|
pararamio_aio/_core/validators.py,sha256=6AB_miJiX8jbvSzOX5IbLwYwJn0mTRpF3wS0BCc3BG0,2397
|
15
16
|
pararamio_aio/_core/constants/__init__.py,sha256=HnuJjEqv1mU6NPHYQqnM4WPw-zYC3oc9YGN0G77VGBc,124
|
16
|
-
pararamio_aio/_core/constants/base.py,sha256=
|
17
|
+
pararamio_aio/_core/constants/base.py,sha256=twkGDiqOfq1ZaXSK4F4HFBWahXoTj3cJEQzwPtv6aVk,279
|
17
18
|
pararamio_aio/_core/constants/endpoints.py,sha256=4cbisrT6FDK9-Zc5zmg1R1k2K1L36ynR8aF__Fq5rSo,1990
|
18
19
|
pararamio_aio/_core/exceptions/__init__.py,sha256=Res9nMxrOYV5U1Lmgh8HOXKm2J_-vig0YzC5yAh05yc,125
|
19
20
|
pararamio_aio/_core/exceptions/auth.py,sha256=sUWEZrF9FeItFmBZFAQ4v8ujwh3OXNiDRLd4E45e_V8,2641
|
@@ -34,7 +35,7 @@ pararamio_aio/_core/utils/requests.py,sha256=8YvsxWFdWUXdtMwvikvQglrbcZ1I9Fe-WXS
|
|
34
35
|
pararamio_aio/constants/__init__.py,sha256=IeBstHaf_NOtCt3DKSpBXGYlkG78WMSynIMXlv922R0,302
|
35
36
|
pararamio_aio/exceptions/__init__.py,sha256=sJcl0eZOESZndIjJj_aTUcbXM-QpcyHmHhujt3rPPXs,945
|
36
37
|
pararamio_aio/exceptions/base.py,sha256=AilA_mJwd0tgrf3Z5jPWZBnxGgu33pzEuxNEKkKfv9E,49
|
37
|
-
pararamio_aio/models/__init__.py,sha256=
|
38
|
+
pararamio_aio/models/__init__.py,sha256=SUXamoB9MK8CKYB9Eg27FMjikOnyRMEjxdDcvk84SJg,704
|
38
39
|
pararamio_aio/models/activity.py,sha256=1SgKWuzC_kr2oH8udjkUT2nrAZQ0w5XlvBzoOP4k-Ig,3372
|
39
40
|
pararamio_aio/models/attachment.py,sha256=ryjitTErC2CPfndzCb9Y2vCe56Y3b20Ll1Yd9uqyYGE,3887
|
40
41
|
pararamio_aio/models/base.py,sha256=06AML0IVwGptswsZnHxWc6-jbfkRAqTM9LKLNnM1DWQ,2386
|
@@ -50,7 +51,7 @@ pararamio_aio/models/user.py,sha256=stiDRQ0WdsjYLKsP_gwkn6pfcauPp41T7-pWFKWKy3A,
|
|
50
51
|
pararamio_aio/utils/__init__.py,sha256=b51cwaL3aMb1VzqCrlg_gDkgj5lKtO9ptkwXFzdAgqs,438
|
51
52
|
pararamio_aio/utils/authentication.py,sha256=SMMrqAY1MOZx6TAhmhgpc9619f0r7XgNky8_30T3sUM,11706
|
52
53
|
pararamio_aio/utils/requests.py,sha256=JIb0rBI6MPMicjyz6E2xKPtxfO0B9G5S_l6OZCmu9Hw,1873
|
53
|
-
pararamio_aio-3.0.
|
54
|
-
pararamio_aio-3.0.
|
55
|
-
pararamio_aio-3.0.
|
56
|
-
pararamio_aio-3.0.
|
54
|
+
pararamio_aio-3.0.3.dist-info/METADATA,sha256=vMXkFX5A2yAlxjZCJvwGNM2E3gfXYzqGcsXevcSi1F0,7432
|
55
|
+
pararamio_aio-3.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
56
|
+
pararamio_aio-3.0.3.dist-info/top_level.txt,sha256=jJ1yLKIEkYu3uri2xi6Jc49rmtGy8U-YfLSoESnkQ-w,14
|
57
|
+
pararamio_aio-3.0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|