Metadata-Version: 2.2
Name: dublib
Version: 0.16.2
Summary: Коллекция полезных модулей от DUB1401.
Author-email: DUB1401 <vlad.milosta@outlook.com>
License: This is free and unencumbered software released into the public domain.
        
        Anyone is free to copy, modify, publish, use, compile, sell, or
        distribute this software, either in source code form or as a compiled
        binary, for any purpose, commercial or non-commercial, and by any
        means.
        
        In jurisdictions that recognize copyright laws, the author or authors
        of this software dedicate any and all copyright interest in the
        software to the public domain. We make this dedication for the benefit
        of the public at large and to the detriment of our heirs and
        successors. We intend this dedication to be an overt act of
        relinquishment in perpetuity of all present and future rights to this
        software under copyright law.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
        IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
        OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
        ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
        OTHER DEALINGS IN THE SOFTWARE.
        
        For more information, please refer to <http://unlicense.org/>
        
Project-URL: Documentation, https://github.com/DUB1401/dublib/tree/main/docs
Project-URL: Source Code, https://github.com/DUB1401/dublib
Project-URL: Bug Tracker, https://github.com/DUB1401/dublib/issues
Project-URL: Changelog, https://github.com/DUB1401/dublib/releases
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: Natural Language :: Russian
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: curl_cffi>=0.7.0
Requires-Dist: dateparser
Requires-Dist: fake_useragent
Requires-Dist: httpx
Requires-Dist: httpx[http2]
Requires-Dist: prettytable
Requires-Dist: requests
Requires-Dist: gnureadline; sys_platform == "linux"
Requires-Dist: pyreadline3; sys_platform == "win32"
Provides-Extra: telebot
Requires-Dist: pyTelegramBotAPI; extra == "telebot"

# dublib
**dublib** – это библиотека Python, поставляющая полезные компоненты общего назначения.

Данный набор модулей распространяется по Rolling-модели. Это значит, что разработчик не заботится об обратной совместимости с прошлыми релизами, потому рекомендуется привязывать ваш проект строго к определённой версии библиотеки!

Все компоненты поставляют лишь базовую документацию, необходимую для общего понимания принципов работы.

# Поставляемые компоненты
Библиотека включает следующие модули:
* [CLI](https://github.com/DUB1401/dublib/blob/main/docs/CLI/README.md)
* [Engine](https://github.com/DUB1401/dublib/blob/main/docs/Engine/README.md)
* [Methods](https://github.com/DUB1401/dublib/blob/main/docs/Methods/README.md)
* [Polyglot](https://github.com/DUB1401/dublib/blob/main/docs/Polyglot.md)
* [TelebotUtils](https://github.com/DUB1401/dublib/blob/main/docs/TelebotUtils/README.md)
* [WebRequestor](https://github.com/DUB1401/dublib/blob/main/docs/WebRequestor.md)

# Установка
Библиотека поддерживает установку из двух типов репозиториев:
* **PyPI** – стабильные выпуски (с возможностью выбора конкретной версии);
* **GitHub** – канал разработки со всеми последними изменениями и исправлениями.

_**Примечание:**_ Для установки библиотеки из репозитория GitHub на вашем устройстве должна присутствовать система контроля версий Git.
```
# Установка из PyPi.
pip install dublib

# Установка конкретной версии из PyPi.
pip install dublib=={version}

# Установка из GitHub.
pip install git+https://github.com/DUB1401/dublib
```

_Copyright © DUB1401. 2023-2025._
