Beta
Software Engineering for Data Scientists in Python
PEP 8
What are the tools that you can use?
- You can use your IDE to do this
- pycodestyle package
pip install pycodestyle
Writing your first package
A minimal python package has:
- A directory
- A python file
The structure should be package_name/init.py. This is the minimal amount for you to use.