pararamio-aio 3.0.1__tar.gz → 3.0.3__tar.gz
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-3.0.1 → pararamio_aio-3.0.3}/PKG-INFO +2 -2
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/pyproject.toml +2 -2
- pararamio_aio-3.0.3/src/pararamio_aio/__init__.py +78 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/constants/base.py +1 -1
- pararamio_aio-3.0.3/src/pararamio_aio/cookie_manager.py +15 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/__init__.py +2 -1
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio.egg-info/PKG-INFO +2 -2
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio.egg-info/SOURCES.txt +1 -0
- pararamio_aio-3.0.1/src/pararamio_aio/__init__.py +0 -26
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/README.md +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/setup.cfg +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/__init__.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/_types.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/base.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/client_protocol.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/constants/__init__.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/constants/endpoints.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/cookie_decorator.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/cookie_manager.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/endpoints.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/exceptions/__init__.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/exceptions/auth.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/exceptions/base.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/models/__init__.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/models/base.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/models/chat.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/models/post.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/models/user.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/py.typed +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/utils/__init__.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/utils/async_requests.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/utils/auth_flow.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/utils/authentication.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/utils/captcha.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/utils/helpers.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/utils/http_client.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/utils/requests.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_core/validators.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/_types.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/client.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/constants/__init__.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/exceptions/__init__.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/exceptions/base.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/file_operations.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/activity.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/attachment.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/base.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/bot.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/chat.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/deferred_post.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/file.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/group.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/poll.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/post.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/team.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/models/user.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/py.typed +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/utils/__init__.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/utils/authentication.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio/utils/requests.py +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio.egg-info/dependency_links.txt +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio.egg-info/requires.txt +0 -0
- {pararamio_aio-3.0.1 → pararamio_aio-3.0.3}/src/pararamio_aio.egg-info/top_level.txt +0 -0
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pararamio-aio
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.3
|
4
4
|
Summary: Async Python client library for pararam.io platform
|
5
5
|
Author: Pararamio Team
|
6
6
|
License: MIT
|
7
7
|
Project-URL: Homepage, https://gitlab.com/pararam-public/py-pararamio
|
8
|
-
Project-URL: Documentation, https://
|
8
|
+
Project-URL: Documentation, https://gitlab.com/pararam-public/py-pararamio/-/wikis/home
|
9
9
|
Project-URL: Repository, https://gitlab.com/pararam-public/py-pararamio
|
10
10
|
Project-URL: Issues, https://gitlab.com/pararam-public/py-pararamio/-/issues
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "pararamio-aio"
|
7
|
-
version = "3.0.
|
7
|
+
version = "3.0.3"
|
8
8
|
description = "Async Python client library for pararam.io platform"
|
9
9
|
readme = "README.md"
|
10
10
|
license = {text = "MIT"}
|
@@ -42,7 +42,7 @@ dev = [
|
|
42
42
|
|
43
43
|
[project.urls]
|
44
44
|
Homepage = "https://gitlab.com/pararam-public/py-pararamio"
|
45
|
-
Documentation = "https://
|
45
|
+
Documentation = "https://gitlab.com/pararam-public/py-pararamio/-/wikis/home"
|
46
46
|
Repository = "https://gitlab.com/pararam-public/py-pararamio"
|
47
47
|
Issues = "https://gitlab.com/pararam-public/py-pararamio/-/issues"
|
48
48
|
|
@@ -0,0 +1,78 @@
|
|
1
|
+
"""Async Python client library for pararam.io platform."""
|
2
|
+
|
3
|
+
from pararamio_aio._core.constants import VERSION
|
4
|
+
|
5
|
+
from ._types import (
|
6
|
+
BotProfileT,
|
7
|
+
PostMetaFileT,
|
8
|
+
PostMetaUserT,
|
9
|
+
ProfileTypeT,
|
10
|
+
QuoteRangeT,
|
11
|
+
TextParsedT,
|
12
|
+
)
|
13
|
+
from .client import AsyncPararamio
|
14
|
+
from .cookie_manager import (
|
15
|
+
AsyncCookieManager,
|
16
|
+
AsyncFileCookieManager,
|
17
|
+
AsyncInMemoryCookieManager,
|
18
|
+
AsyncRedisCookieManager,
|
19
|
+
)
|
20
|
+
from .exceptions import (
|
21
|
+
PararamioAuthenticationException,
|
22
|
+
PararamioException,
|
23
|
+
PararamioHTTPRequestException,
|
24
|
+
PararamioValidationException,
|
25
|
+
)
|
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
|
+
)
|
44
|
+
|
45
|
+
__version__ = VERSION
|
46
|
+
__all__ = (
|
47
|
+
"Activity",
|
48
|
+
"ActivityAction",
|
49
|
+
"Attachment",
|
50
|
+
"AsyncCookieManager",
|
51
|
+
"AsyncFileCookieManager",
|
52
|
+
"AsyncInMemoryCookieManager",
|
53
|
+
"AsyncPararamio",
|
54
|
+
"AsyncPararamioBot",
|
55
|
+
"AsyncRedisCookieManager",
|
56
|
+
"BotProfileT",
|
57
|
+
"Chat",
|
58
|
+
"DeferredPost",
|
59
|
+
"File",
|
60
|
+
"Group",
|
61
|
+
"PararamioException",
|
62
|
+
"PararamioAuthenticationException",
|
63
|
+
"PararamioHTTPRequestException",
|
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",
|
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
|
+
]
|
@@ -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,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pararamio-aio
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.3
|
4
4
|
Summary: Async Python client library for pararam.io platform
|
5
5
|
Author: Pararamio Team
|
6
6
|
License: MIT
|
7
7
|
Project-URL: Homepage, https://gitlab.com/pararam-public/py-pararamio
|
8
|
-
Project-URL: Documentation, https://
|
8
|
+
Project-URL: Documentation, https://gitlab.com/pararam-public/py-pararamio/-/wikis/home
|
9
9
|
Project-URL: Repository, https://gitlab.com/pararam-public/py-pararamio
|
10
10
|
Project-URL: Issues, https://gitlab.com/pararam-public/py-pararamio/-/issues
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
@@ -1,26 +0,0 @@
|
|
1
|
-
"""Async Python client library for pararam.io platform."""
|
2
|
-
|
3
|
-
from pararamio_aio._core.constants import VERSION
|
4
|
-
|
5
|
-
from .client import AsyncPararamio
|
6
|
-
from .exceptions import (
|
7
|
-
PararamioAuthenticationException,
|
8
|
-
PararamioException,
|
9
|
-
PararamioHTTPRequestException,
|
10
|
-
PararamioValidationException,
|
11
|
-
)
|
12
|
-
from .models import Chat, File, Group, Post, User
|
13
|
-
|
14
|
-
__version__ = VERSION
|
15
|
-
__all__ = (
|
16
|
-
"AsyncPararamio",
|
17
|
-
"Chat",
|
18
|
-
"User",
|
19
|
-
"Post",
|
20
|
-
"Group",
|
21
|
-
"File",
|
22
|
-
"PararamioException",
|
23
|
-
"PararamioAuthenticationException",
|
24
|
-
"PararamioHTTPRequestException",
|
25
|
-
"PararamioValidationException",
|
26
|
-
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|