Initially you should specify which packages you use in the scripts
importpathlib# Packages that are provided from pythonimportnumpyasnp# Packages that are downloaded, specified in the requierements.txtimportmyscript# Scripts from your Project/Pipeline
Next your code for the specific problem that you are trying to solve, all written code should be containded in a function/classes
It should contain a main function with is calling all individual function to solve the problem.