gitextract_vyf0nlkm/ ├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── csp/ │ ├── __init__.py │ ├── read_lengths.py │ └── stock_cutter_1d.py ├── deployment/ │ ├── .editorconfig │ ├── .gitignore │ ├── Procfile │ ├── csp.py │ ├── frontend/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── index.html │ │ └── src/ │ │ ├── App.vue │ │ ├── assets/ │ │ │ └── style.scss │ │ ├── components/ │ │ │ └── CspTool.vue │ │ └── main.js │ ├── requirements.txt │ ├── server.py │ ├── stock_cutter.py │ └── stock_cutter_1d.py ├── infile.txt └── tests/ └── basic_test.py