A python module containing all the basic functions and classes for python. From simple addition to advanced file encryption.
Project description
py_everything
A python module containing all the functions and classes from basic to advanced for Python. From simple calculations to advanced file encryption. Everything is included in this one package.
It allows you to use all of its functions and classes without having to write huge complex code. It is a very simple and easy to use library.
Downloads -
PyPI -
Status -
GitHub -
Installation
py_everything is available on PyPi, and you can install it as follows:
$ python -m pip install py_everything
py_everything officially supports Python 3.6+
Features
- You can make use of the thousands of functions and classes available to you.
- Has an in-built CLI tool that generates a python package project structure for you. - setupPyGen
- Good and Consistent Naming Convention. - camelCase
- Simple and easy to use.
- You don't have to write all of that code yourself, just call the pre-made functions.
- There are two variants of most classes, a Base variant and an Advanced variant.
- Make your own classes from our pre-provided Base variants. The Advanced ones are not for inheriting, but there is no problem in experimenting.
setupPyGen
Detailed documentation can be found on ReadTheDocs
Basic Usage:
$ ls
package/ new/ old/
$ cd package/
$ ls -a
. ..
$ setupPyGen -g True -t True --gitignore True
<--Follow the prompts(packages entered - new, old)-->
$ ls -A
.gitignore LICENSE README.md setup.py .git/ new/ old/ tests/
$ cat setup.py
from setuptools import setup
readme_file = open("README.md", "r").read()
setup(
name="package-name",
version="1.0.0",
description="Given Project Description",
long_description=readme_file,
long_description_content_type="text/markdown",
author="Author Name",
author_email="name@example.com",
packages=[new, old],
install_requires=[],
license="MIT License",
url="https://github.com/play4Tutorials/py_everything/",
python_requires='>=3.5'
)
NOTE: Currently setupPyGen doesn't support classifiers, and find_packages()
. But support will be added soon.
Documentation and Usage
The documentation can be found on ReadTheDocs
The basic usage for this library is given below:
>>> import py_everything
>>> from py_everything import search
>>> search.search_files('python', 'C:\Programming\\')
C:\Programming\python.txt
C:\Programming\python_project.py
C:\Programming\python_py_everything.docx
>>> my_list = [2, 4, 5, 3, 7, 5, 6, 3 , 12 , 9, 6]
>>> py_everything.maths.avg(my_list)
5.636363636363637
Contributing
For details, on how to contribute, please read CONTRIBUTING.md
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for py_everything-1.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c462ff42c75d50107ad4a6ce102d263479961222d117bfc3b9c4b92e0b7890ea |
|
MD5 | b907227efefefcf7b35da1d45ca7e2c5 |
|
BLAKE2b-256 | e72ba6d740a273ef94e23f99b393b42e0fd2b9a471588f000cd488e8a14541c3 |