This repository contains a simple python module.
- Python 3.4.4 or newer (see https://www.python.org/downloads/)
- Open this directory (containing the
setup.py
) in a command line - Type
python setup.py install
- For the
cmd
example dir to this folder (containing thesetup.py
)
python lib/mymodule/script.py C:\valid-path 5
- Now you can call functions like this:
python
import mymodule
mymodule.helper.hfunction()
mymodule.filefunction("C:/valid-path", 5)