Metadata-Version: 2.2
Name: hrenpack
Version: 1.0.0
Summary: Универсальная библиотека python для большинства задач
Home-page: https://github.com/MagIlyas-DOMA/hrenpack
Author: Маг Ильяс DOMA (MagIlyas_DOMA)
Author-email: hrenpack@mail.ru
License: BSD 3-Clause License
        
        Copyright (c) MagIlyas DOMA, 2024-2025. All rights reserved.
        
        Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
        1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
        2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
        3. Neither the name of the MagIlyas DOMA nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
        
        THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: soundfile==0.13.0
Requires-Dist: SpeechRecognition==3.14.0
Requires-Dist: requests>=2.32.3
Requires-Dist: screeninfo>=0.8.1
Requires-Dist: psutil>=6.1.1
Requires-Dist: bs4==0.0.2
Requires-Dist: beautifulsoup4==4.12.3
Requires-Dist: pyodbc==5.2.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

Универсальная библиотека python для большинства задач. 

Делится на несколько пакетов:  
`__init__` - основные функции и функции, которые не могут быть отнесены ни к одной категории  
`boolwork` - работа с булевыми значениями  
`classes` - классы  
`clipboard_work` - работа с буфером обмена  
`cmd` - работа с инструментам ОС  
`constants` - разные полезные константы
`date_and_time_work` - работа со значениями даты и времени  
`dbwork` - работа с базами данных. Находится на ранней стадии разработки  
`decorators` - декораторы  
`dec_to_hex` - работа с шестнадцатеричными числами. Находится на ранней стадии разработки  
`functionwork` - работа с функциями  
`gpswork` - работа с GPS  
`hashwork` - работа с хешированием  
`encapsulation` - полноценная инкапсуляция  
`kwargswork` - работа с **kwargs  
`listwork` - работа со списками, кортежами и словарями   
`network` - работа с интернетом  
`numwork` - работа с числами  
`print_color` - цветная консоль. Может работать не во всех консолях  
`resolution` - определение разрешения экрана  
`slugwork` - работа со slug, т. е. с строками, которые соответствуют правилам   
`strwork` - работа со строками  
`taskmgr` - работа с задачами  
`type_define` - определение, относятся ли данные к определнному типу, или нет  
`windows_registry` - работа с реестром Windows 

Помимо пакетов, в hrenpack есть несколько подбиблиотек:  
`custom_methods` - дополнительные методы для уже существующих объектов   
`filework` - работа с файлами  
`framework` - дополнительные функции для уже существующих библиотек и фреймворков  
`office` - работа с файлами Microsoft Office. Находится на ранней стадии разработки  

Ресурсы:
В папке ресурсов находятся файлы ресурсов для корректной работы hrenpack

Использование:
Данная библиотека распостраняется по [4-пунктной лицензии BSD](https://ru.wikipedia.org/wiki/%D0%9B%D0%B8%D1%86%D0%B5%D0%BD%D0%B7%D0%B8%D0%B8_BSD#4-%D0%BF%D1%83%D0%BD%D0%BA%D1%82%D0%BE%D0%B2%D0%B0%D1%8F_%D0%BB%D0%B8%D1%86%D0%B5%D0%BD%D0%B7%D0%B8%D1%8F,_%D0%B8%D0%BB%D0%B8_%D0%B8%D0%B7%D0%BD%D0%B0%D1%87%D0%B0%D0%BB%D1%8C%D0%BD%D0%B0%D1%8F_%D0%BB%D0%B8%D1%86%D0%B5%D0%BD%D0%B7%D0%B8%D1%8F_BSD)

-----------------------------------------------------------------------------------------------------

A universal python library for most tasks.

Divided into several packages:  
`__init__` - basic functions and functions that cannot be assigned to any category  
`boolwork` - working with boolean values  
`classes` - classes  
`clipboard_work` - working with the clipboard  
`cmd` - working with OS tools  
`constants` - various useful constants  
`date_and_time_work` - working with date and time values  
`dbwork` - working with databases. Is in the early stages of development  
`decorators` - decorators  
`dec_to_hex` - working with hexadecimal numbers. It is in early development stages  
`functionwork` - working with functions  
`gpswork` - working with GPS  
`hashwork` - working with hashing  
`encapsulation` - full encapsulation  
`kwargswork` - working with **kwargs  
`listwork` - working with lists, tuples and dictionaries  
`network` - working with the Internet  
`numwork` - working with numbers  
`print_color` - color console. May not work in all consoles  
`resolution` - screen resolution detection  
`slugwork` - work with slug, i.e. with strings that match the rules  
`strwork` - work with strings  
`taskmgr` - work with tasks  
`type_define` - determine whether the data belongs to a certain type or not  
`windows_registry` - work with the Windows registry  

In addition to packages, hrenpack has several sublibraries:    
`custom_methods` - additional methods for existing objects     
`filework` - work with files  
`framework` - additional functions for existing libraries and frameworks  
`office` - work with Microsoft Office files. Is in an early stage of development  

Resources:
The resource folder contains resource files for the correct operation of hrenpack

Usage:
This library is distributed under a [4-clause license BSD](https://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_(original_%22BSD_License%22))
