Pytdbot 0.9.0.dev1__tar.gz → 0.9.0.dev3__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.
Files changed (39) hide show
  1. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/LICENSE +1 -1
  2. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/PKG-INFO +3 -3
  3. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/Pytdbot.egg-info/PKG-INFO +3 -3
  4. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/README.md +2 -2
  5. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/__init__.py +2 -2
  6. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/client.py +161 -319
  7. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/exception/__init__.py +2 -2
  8. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/filters.py +3 -2
  9. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/handlers/decorators.py +3 -3
  10. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/handlers/handler.py +1 -1
  11. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/handlers/td_updates.py +34 -34
  12. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/methods/methods.py +168 -89
  13. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/methods/td_functions.py +810 -1619
  14. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/types/__init__.py +7 -11
  15. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/types/td_types/bound_methods/file.py +4 -1
  16. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/types/td_types/bound_methods/message.py +78 -32
  17. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/types/td_types/types.py +306 -309
  18. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/utils/escape.py +3 -2
  19. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/utils/text_format.py +36 -36
  20. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/MANIFEST.in +0 -0
  21. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/Pytdbot.egg-info/SOURCES.txt +0 -0
  22. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/Pytdbot.egg-info/dependency_links.txt +0 -0
  23. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/Pytdbot.egg-info/requires.txt +0 -0
  24. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/Pytdbot.egg-info/top_level.txt +0 -0
  25. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/handlers/__init__.py +0 -0
  26. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/methods/__init__.py +0 -0
  27. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/tdjson/__init__.py +0 -0
  28. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/tdjson/tdjson.py +0 -0
  29. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/types/plugins/__init__.py +0 -0
  30. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/types/td_types/__init__.py +0 -0
  31. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/types/td_types/bound_methods/__init__.py +0 -0
  32. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/types/td_types/bound_methods/chatActions.py +0 -0
  33. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/utils/__init__.py +0 -0
  34. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/utils/json_utils.py +0 -0
  35. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/utils/obj_encoder.py +0 -0
  36. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/pytdbot/utils/strings.py +0 -0
  37. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/requirements.txt +0 -0
  38. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/setup.cfg +0 -0
  39. {Pytdbot-0.9.0.dev1 → Pytdbot-0.9.0.dev3}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022-2023 Python TDLib
3
+ Copyright (c) 2022-2024 Python TDLib
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Pytdbot
3
- Version: 0.9.0.dev1
3
+ Version: 0.9.0.dev3
4
4
  Summary: Easy-to-use asynchronous TDLib wrapper for Python.
5
5
  Home-page: https://github.com/pytdbot/client
6
6
  Author: AYMEN Mohammed
@@ -14,7 +14,7 @@ Requires-Python: >=3.9
14
14
  Description-Content-Type: text/markdown
15
15
  License-File: LICENSE
16
16
 
17
- # Pytdbot [![Version](https://img.shields.io/pypi/v/Pytdbot?style=flat&logo=pypi)](https://pypi.org/project/Pytdbot) [![TDLib version](https://img.shields.io/badge/TDLib-v1.8.37-blue?logo=telegram)](https://github.com/tdlib/td) [![Downloads](https://static.pepy.tech/personalized-badge/pytdbot?period=month&units=none&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/pytdbot)
17
+ # Pytdbot [![Version](https://img.shields.io/pypi/v/Pytdbot?style=flat&logo=pypi)](https://pypi.org/project/Pytdbot) [![TDLib version](https://img.shields.io/badge/TDLib-v1.8.39-blue?logo=telegram)](https://github.com/tdlib/td) [![Downloads](https://static.pepy.tech/personalized-badge/pytdbot?period=month&units=none&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/pytdbot)
18
18
 
19
19
  Pytdbot (Python TDLib) is an asynchronous [**TDLib**](https://github.com/tdlib/td) wrapper for **Telegram** users/bots written in **Python**.
20
20
 
@@ -29,7 +29,7 @@ Pytdbot (Python TDLib) is an asynchronous [**TDLib**](https://github.com/tdlib/t
29
29
  - **Well-typed**: Provides clear and well-defined methods and types to enhance developer experience
30
30
  - **Decorator-Based Updates**: Simplifies the implementation of update handlers through a decorator pattern
31
31
  - **Bound Methods**: Features types bound methods for improved usability
32
- - **Unlimited Support**: Supports **Userbots**, **Plugins**, [**filters**](pytdbot/filters.py#L23), [**TDLib**](https://github.com/tdlib/td) types/functions and much more
32
+ - **Unlimited Support**: Supports **Plugins**, [**filters**](pytdbot/filters.py#L23), [**TDLib**](https://github.com/tdlib/td) types/functions and much more
33
33
 
34
34
 
35
35
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Pytdbot
3
- Version: 0.9.0.dev1
3
+ Version: 0.9.0.dev3
4
4
  Summary: Easy-to-use asynchronous TDLib wrapper for Python.
5
5
  Home-page: https://github.com/pytdbot/client
6
6
  Author: AYMEN Mohammed
@@ -14,7 +14,7 @@ Requires-Python: >=3.9
14
14
  Description-Content-Type: text/markdown
15
15
  License-File: LICENSE
16
16
 
17
- # Pytdbot [![Version](https://img.shields.io/pypi/v/Pytdbot?style=flat&logo=pypi)](https://pypi.org/project/Pytdbot) [![TDLib version](https://img.shields.io/badge/TDLib-v1.8.37-blue?logo=telegram)](https://github.com/tdlib/td) [![Downloads](https://static.pepy.tech/personalized-badge/pytdbot?period=month&units=none&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/pytdbot)
17
+ # Pytdbot [![Version](https://img.shields.io/pypi/v/Pytdbot?style=flat&logo=pypi)](https://pypi.org/project/Pytdbot) [![TDLib version](https://img.shields.io/badge/TDLib-v1.8.39-blue?logo=telegram)](https://github.com/tdlib/td) [![Downloads](https://static.pepy.tech/personalized-badge/pytdbot?period=month&units=none&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/pytdbot)
18
18
 
19
19
  Pytdbot (Python TDLib) is an asynchronous [**TDLib**](https://github.com/tdlib/td) wrapper for **Telegram** users/bots written in **Python**.
20
20
 
@@ -29,7 +29,7 @@ Pytdbot (Python TDLib) is an asynchronous [**TDLib**](https://github.com/tdlib/t
29
29
  - **Well-typed**: Provides clear and well-defined methods and types to enhance developer experience
30
30
  - **Decorator-Based Updates**: Simplifies the implementation of update handlers through a decorator pattern
31
31
  - **Bound Methods**: Features types bound methods for improved usability
32
- - **Unlimited Support**: Supports **Userbots**, **Plugins**, [**filters**](pytdbot/filters.py#L23), [**TDLib**](https://github.com/tdlib/td) types/functions and much more
32
+ - **Unlimited Support**: Supports **Plugins**, [**filters**](pytdbot/filters.py#L23), [**TDLib**](https://github.com/tdlib/td) types/functions and much more
33
33
 
34
34
 
35
35
 
@@ -1,4 +1,4 @@
1
- # Pytdbot [![Version](https://img.shields.io/pypi/v/Pytdbot?style=flat&logo=pypi)](https://pypi.org/project/Pytdbot) [![TDLib version](https://img.shields.io/badge/TDLib-v1.8.37-blue?logo=telegram)](https://github.com/tdlib/td) [![Downloads](https://static.pepy.tech/personalized-badge/pytdbot?period=month&units=none&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/pytdbot)
1
+ # Pytdbot [![Version](https://img.shields.io/pypi/v/Pytdbot?style=flat&logo=pypi)](https://pypi.org/project/Pytdbot) [![TDLib version](https://img.shields.io/badge/TDLib-v1.8.39-blue?logo=telegram)](https://github.com/tdlib/td) [![Downloads](https://static.pepy.tech/personalized-badge/pytdbot?period=month&units=none&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/pytdbot)
2
2
 
3
3
  Pytdbot (Python TDLib) is an asynchronous [**TDLib**](https://github.com/tdlib/td) wrapper for **Telegram** users/bots written in **Python**.
4
4
 
@@ -13,7 +13,7 @@ Pytdbot (Python TDLib) is an asynchronous [**TDLib**](https://github.com/tdlib/t
13
13
  - **Well-typed**: Provides clear and well-defined methods and types to enhance developer experience
14
14
  - **Decorator-Based Updates**: Simplifies the implementation of update handlers through a decorator pattern
15
15
  - **Bound Methods**: Features types bound methods for improved usability
16
- - **Unlimited Support**: Supports **Userbots**, **Plugins**, [**filters**](pytdbot/filters.py#L23), [**TDLib**](https://github.com/tdlib/td) types/functions and much more
16
+ - **Unlimited Support**: Supports **Plugins**, [**filters**](pytdbot/filters.py#L23), [**TDLib**](https://github.com/tdlib/td) types/functions and much more
17
17
 
18
18
 
19
19
 
@@ -4,8 +4,8 @@ from .client import Client
4
4
 
5
5
  __all__ = ["types", "utils", "filters", "exception", "TdJson", "Client"]
6
6
 
7
- __version__ = "0.9.0dev1"
8
- __copyright__ = "Copyright (c) 2022-2023 AYMEN Mohammed ~ https://github.com/AYMENJD"
7
+ __version__ = "0.9.0dev3"
8
+ __copyright__ = "Copyright (c) 2022-2024 AYMEN Mohammed ~ https://github.com/AYMENJD"
9
9
  __license__ = "MIT License"
10
10
 
11
11
  VERSION = __version__