How to install the library
pip install theeverythinglibrary
How to upgrade the library
pip install --upgrade theeverythinglibrary
How to uninstall the library
pip uninstall theeverythinglibraryImport the library
import theeverythinglibraryFind what you need
from theeverythinglibrary.encoding import TELEncoding
from theeverythinglibrary.encryption import TELSymmetric, TELAsymmetric
from theeverythinglibrary.enviroment import TELEnviroment
from theeverythinglibrary.exceptions import InvalidFilenameError, InvalidColor
from theeverythinglibrary.files import TELFileManager
from theeverythinglibrary.hashing import TELHash
from theeverythinglibrary.math import TELMath
from theeverythinglibrary.password import TELPassword
from theeverythinglibrary.regex import TELRegex
from theeverythinglibrary.sorting import TELSorting, TELSearching
from theeverythinglibrary.translator import TELTranslator
from theeverythinglibrary.utilities import TELUtilities
from theeverythinglibrary.web import TELHTTPThen use it like this!
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!- Base64 encoding and decoding
- Hex encoding and decoding
- Binary encoding and decoding
- Symmetric encryption
- Asymmetric encryption
- Public and Private key managment
- Set variable
- Get variable
- Remove variable
- List all variables
- Does variable exist
- Get multiple variables
- Update variable
- Append variable
- Prepend variable
- Restore variable
- Create file
- Create directory
- Delete file
- Delete directory
- List files in directory
- Copy file to directory
- Copy files from one directory to different directory
- Move file to directory
- Move files from one directory to different directory
- Advanced recursive file searching
- Generate salt
- Hash a password
- Verify a hash
- Hash a file
- 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
- Set password policy
- Generate password
- Check password with policy
- Match
- Search
- Find all
- Replace
- Escape
- Split
- Bubble sort
- Selection sort
- Insertion sort
- Quick sort
- Merge sort
- Bogo sort
- Search
- Linear search
- Binary search
- Translate
- Get available languages
- Colored print
- Project path
- Project file path
- Get http request
- Post http request
- Put http request
- Delete http request
- Download file
- Get status codes
Please try and use the formatting rules from the FORMATTING.md file
Visit the GitHub repository for the latest updates, documentation, and community discussions.
- Public on PyPi (pip install theeverythinglibrary)
- Fixing import
- Fixed import
- Added math functions
- Added sorting algorithms
- Added more math functions
- Added file managment
- Reworked error handling
- Fixed file manager args
- Updated README
- Fix with base64 decode args
- Added searching algorithms
- Fixed some small issues
- Added regular expressions (regex)
- Fixed some small issues
- Added utilities
- Added an example of "Project Formatting and Guidelines" file (FORMATTING.md)
- Added more functions for the file manager
- Create file
- Delete file
- Fixed cprint
- Huge README change
- Updated README
- Added environment variables utility
- Added managing and sending http requests
- Added more documentation
- Updated README
- Added more documentation
- Added translation
- Added file search
- Improved file search
- Added file info
- Added class
File - Added byte converter
- Cleanup
- Rewrote file search for improved performance (works but might find bugs)
- Fixes to file search
- Fixed some regex
- Added hashing support
- Fixes to hashing and setup requirements
- Fixed and improvements to encoding
- Added copy dir
- Added move dir
- Added
@staticmethodto any function that supports it
- Added password generation
- Added password policy
- Added password policy checking
