Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pybash1/py_everything
A python package containing all the basic functions and classes for python. From simple addition to advanced file encryption.
https://github.com/pybash1/py_everything
advanced-programming basic-programming classes cli encryption encryption-decryption everything functions git gitit library package path pip pypi python readthedocs setup-tool variants
Last synced: about 1 month ago
JSON representation
A python package containing all the basic functions and classes for python. From simple addition to advanced file encryption.
- Host: GitHub
- URL: https://github.com/pybash1/py_everything
- Owner: pybash1
- License: mit
- Archived: true
- Created: 2021-02-14T12:05:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-07T11:49:39.000Z (over 2 years ago)
- Last Synced: 2024-09-08T14:30:21.832Z (2 months ago)
- Topics: advanced-programming, basic-programming, classes, cli, encryption, encryption-decryption, everything, functions, git, gitit, library, package, path, pip, pypi, python, readthedocs, setup-tool, variants
- Language: Python
- Homepage: https://py-everything.readthedocs.io/
- Size: 3.75 MB
- Stars: 12
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# 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 -
[![Downloads](https://pepy.tech/badge/py-everything)](https://pypi.org/project/py-everything)
[![Downloads](https://pepy.tech/badge/py-everything/month)](https://pypi.org/project/py-everything)
[![Downloads](https://pepy.tech/badge/py-everything/week)](https://pypi.org/project/py-everything)PyPI -
[![PyPI - Implementation](https://img.shields.io/pypi/implementation/py-everything?logo=python&logoColor=yellow)](https://pypi.org/project/py-everything)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/py-everything?logo=pypi&logoColor=green)](https://pypi.org/project/py-everything)
[![PyPI](https://img.shields.io/pypi/v/py-everything?logo=pypi&logoColor=green)](https://pypi.org/project/py-everything)
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/py-everything)](https://pypi.org/project/py-everything)
[![PyPI - Status](https://img.shields.io/pypi/status/py-everything)](https://pypi.org/project/py-everything)
[![PyPI - License](https://img.shields.io/pypi/l/py-everything?color=success)](https://pypi.org/project/py-everything)Status -
[![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/pypi/py-everything)](https://libraries.io/pypi/py-everything)
[![Libraries.io SourceRank](https://img.shields.io/librariesio/sourcerank/pypi/py-everything)](https://libraries.io/pypi/py-everything)
[![GitHub issues](https://img.shields.io/github/issues/pybash1/py_everything)](https://github.com/pybash1/py_everything/issues)
[![GitHub pull requests](https://img.shields.io/github/issues-pr/pybash1/py_everything)](https://github.com/pybash1/py_everything/pulls)
[![GitHub branch checks state](https://img.shields.io/github/checks-status/pybash1/py_everything/master)](https://github.com/pybash1/py_everything)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/pybash1/py_everything/Test%20Package)](https://github.com/pybash1/py_everything)
[![Documentation Status](https://readthedocs.org/projects/py-everything/badge/?version=latest)](https://py-everything.readthedocs.io/en/latest/?badge=latest)
[![Codecov](https://img.shields.io/codecov/c/github/pybash1/py_everything)]()
[![DeepSource](https://deepsource.io/gh/pybash1/py_everything.svg/?label=active+issues&show_trend=true)](https://deepsource.io/gh/pybash1/py_everything/?ref=repository-badge)
[![LGTM Grade](https://img.shields.io/lgtm/grade/python/github/pybash1/py_everything)](https://lgtm.com/projects/g/pybash1/py_everything/)GitHub -
[![GitHub forks](https://img.shields.io/github/forks/pybash1/py_everything?style=social)](https://github.com/pybash1/py_everything/network)
[![GitHub Repo stars](https://img.shields.io/github/stars/pybash1/py_everything?style=social)](https://github.com/pybash1/py_everything/stargazers)
[![GitHub watchers](https://img.shields.io/github/watchers/pybash1/py_everything?style=social)](https://github.com/pybash1/py_everything)
[![GitHub repo size](https://img.shields.io/github/repo-size/pybash1/py_everything?logo=github)](https://github.com/pybash1/py_everything)# Got Queries? Join our Discord!
Have questions? Or find docs boring to read through? Then join our discord to get help and chat with the devs![![Discord](https://img.shields.io/discord/838378704673308683)](https://discord.gg/DUeaUDxC7t)
# Installation
py_everything is available on [PyPi](https://pypi.org/project/py-everything), and you can install it as follows:
`$ python -m pip install py-everything`
# Features
- You can make use of the huge number of functions and classes available to you.
- Has an in-built CLI tool that generates a python package project structure for you. - setupPyGen
- setupPyGen now comes with support for `find_packages()`
- Now come with a second CLI tool - gitIt for generating GitHub friendly project structures
- Good and Consistent Naming Convention. - Camel Case
- Simple and easy to use.
- You don't have to write all of that code yourself, just call the pre-made functions.
- Now comes with usefull classes.# setupPyGen
Detailed documentation can be found on [ReadTheDocs](https://py-everything.readthedocs.io/en/latest/setupPyGen.html)
Basic Usage:
```bash
$ 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 setupreadme_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="[email protected]",
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. But support will be added soon. `find_packages()` support has been added.
# gitIt
Detailed documentation can be found on [ReadTheDocs](https://py-everything.readthedocs.io/en/latest/gitIt.html)
Basic Usage:
```bash
$ ls
project1/ project2/
$ cd project1/
$ ls -a
. ..
$ gitIt -gh -s -i -c --greet
<--Follow the prompts(packages entered - new, old)-->
$ ls -A
.github/ .gitignore LICENSE README.md .git/
$ cd .github/
$ ls -A
SECURITY.md workflows/ ISSUE_TEMPLATE/
$ cd workflows/
$ ls -A
greet.yml
$ cd ..
$ cd ISSUE_TEMPLATE/
$ ls
bug-report.md feature-or-enhancement-request.md
$ cd ../..
$ echo "Note that all of these files also have data in it they are not empty!"
Note that all of these files also have data in it they are not empty!
```# Documentation and Usage
The documentation can be found on [ReadTheDocs](https://py-everything.readthedocs.io/en/latest/)
The basic usage for this library is given below:
```python
>>> 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
```
# ContributingFor details, on how to contribute, please read [CONTRIBUTING.md](https://github.com/play4Tutorials/py_everything/tree/master/CONTRIBUTING.md)