python use package code example
Example 1: how to install packages inside thepython script
import sys
import subprocess
subprocess.check_call([sys.executable, '-m', 'pip', 'install',
'<packagename>'])
Example 2: python upload to pip
1. Create files:
__init__.py setup.py README.md LICENSE
2. Check for setuptools and wheel:
pip install --user --upgrade setuptools wheel
3. Generate package:
py setup.py sdist bdist_wheel
4. Upload to pip:
twine upload dist/*
Example 3: importing modules with package in python
from pakage_name.module_name import function_name
from pakage_name import module_name
Example 4: package in python
A package is basically a directory with Python files and a file with the name __init__.py