This python package will let you export your installed packages to txt, pdf and xls format. This package is the advanced version of the
pip freeze > requirements.txt
- Install this package from pypi.org
pip install package-name-exporter
- clone this repo and run
python setup.py install
This library helps you to export the installed packages into txt, xls and pdf format
from package_name_exporter.exporter import PackageNameExporter
my_class = PackageNameExporter()
my_class.get_packages_list('pdf', 'filename.pdf')
from package_name_exporter.exporter import PackageNameExporter
my_class = PackageNameExporter()
my_class.get_packages_list('xls', 'filename.xls')
from package_name_exporter.exporter import PackageNameExporter
my_class = PackageNameExporter()
my_class.get_packages_list('txt', 'filename.txt')