Metadata-Version: 2.1
Name: theeverythinglibrary
Version: 0.2.3
Summary: Library with a module for almost everything
Home-page: https://github.com/RobertArnosson/TheEverythingLibrary
Author: Robert Arnorsson
Project-URL: Bug Reports, https://github.com/RobertArnosson/TheEverythingLibrary/issues
Project-URL: Source, https://github.com/RobertArnosson/TheEverythingLibrary
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# The Everything Library
*Unlock the Power of Python with The Everything Library - Your Go-To Library for Streamlined Development*

[![PyPI - Version](https://img.shields.io/pypi/v/theeverythinglibrary?label=Version)](https://pypi.org/project/theeverythinglibrary/)
[![Python](https://img.shields.io/badge/python-3.9%2B-green?logo=python&logoColor=white&label=Python)](https://github.com/RobertArnosson/TheEverythingLibrary)
[![GitHub Repo stars](https://img.shields.io/github/stars/RobertArnosson/TheEverythingLibrary?logo=github&logoColor=white&label=Stars)](https://github.com/RobertArnosson/TheEverythingLibrary)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/theeverythinglibrary?logo=pypi&logoColor=white&label=Downloads)](https://pypi.org/project/theeverythinglibrary/)
[![PyPI - Status](https://img.shields.io/pypi/status/theeverythinglibrary?label=Status)](https://pypi.org/project/theeverythinglibrary/)
[![PyPI - License](https://img.shields.io/pypi/l/theeverythinglibrary?label=License)](https://github.com/RobertArnosson/TheEverythingLibrary/blob/main/LICENSE)

## Description 
This Python Library will have a LOT of different helper functions and classes that you can use for your own projects.

# Installation
How to install the library 
```bash
pip install theeverythinglibrary
```

# How to use
Import the library
```python
import theeverythinglibrary
```

Find what you need
```python
from theeverythinglibrary.encoding import TELEncoding
from theeverythinglibrary.encryption import TELSymmetric, TELAsymmetric
from theeverythinglibrary.files import TELFileManager
from theeverythinglibrary.math import TELMath
from theeverythinglibrary.sorting import TELSorting
```

Then use it like this!
```python
from theeverythinglibrary.encoding import TELEncoding

encoding = TELEncoding()

encoded_text = encoding.hex_encode("Hello World!")

print(encoded_text)
>>> 48656c6c6f20576f726c6421

decoded_text = encoding.hex_decode(encoded_text)

print(decoded_text)
>>> Hello World!
```

# Features
## Current features
### Encoding
- Base64 encoding and decoding
- Hex encoding and decoding
- Binary encoding and decoding

### Encryption
- Symmetric encryption
- Asymmetric encryption
- Public and Private key managment

### File Managment
- Create directory
- Delete directory
- List files in directory
- Copy files from directory to different directory
- Move files from directory to different directory

### Math Functions
- Add two numbers
- Add list of numbers
- Subtract two numbers
- Subtract list of numbers
- Find average from list of numbers
- Find median from list of numbers

### Sorting algorithms
- Bubble sort
- Selection sort
- Insertion sort
- Quick sort
- Merge sort
- Bogo sort

## Visit Github for more info
[Visit the GitHub repository](https://github.com/RobertArnosson/TheEverythingLibrary) for the latest updates, documentation, and community discussions.

# History

0.0.1 (2023-08-26)
------------------

* Public on PyPi (pip install theeverythinglibrary)

0.0.2 - 0.0.7 (2023-08-26)
------------------

* Fixing import

0.1.0 (2023-08-26)
------------------

* Fixed import
* Added math functions
* Added sorting algorithms

0.2.0 (2023-08-27)
------------------

* Added more math functions
* Added file managment
* Reworked error handling

0.2.1 (2023-08-27)
------------------

* Fixed file manager args

0.2.2 (2023-08-27)
------------------

* Updated README

0.2.3 (2023-08-27)
------------------

* Fix with base64 decode args


