Metadata-Version: 2.1
Name: k_general_kit
Version: 1.0.0
Summary: A package with some usual general functions and objects
Project-URL: Homepage, https://pypi.org/project/k-general-kit/
Project-URL: Issues, https://github.com/KpihX/k_general_kit/issues
Project-URL: Repository, https://github.com/KpihX/k_general_kit.git
Author-email: KpihX <kapoivha@gmail.com>
Maintainer-email: KpihX <kapoivha@gmail.com>
License: MIT License
License-File: LICENSE
Keywords: containers,general,search,sort,tools
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# K-General-Kit 🛠️

This project aims to provide a rich set of useful general functions frequently needed and frequent objects.

## Features 💡

* It contains a general library, for general functions on containiers, string, a bit of mathematics
* We also find a search_sort library, with powerful search and sort algorithms going from the sequential search to the exponential search and from the select sort to the merge sort.
* We also have the gen_obj library for frequents objects like math constants with the ability to ameliorate their precisions
* We also have eval_sequence, which gives powerful functions to evaluate recursive functions, bypassing the recursivity.
* Thera are also an interesting set of datas going from prime numbers collections to txt dictionnaries (for words counting functions).

## Examples of use 📝

```python
from k_general_kit.gen_func import all

print(nel(45)) # prints "quarante cinq"

print(words_sentence("Hello, everyone!", 'en')) # prints "['Hello', 'everyone']"


```

For more tests, use in the project directory the command python -m tests.eval_func or the built-in command in .vscode

## Author ✍️

This project was created by KpihX. You can contact me at kapoivha@gmail.com for any questions or suggestions.

## License 📄

This project is licensed under the MIT license - see the LICENSE file for more details.

: https://github.com/KpihX
