A standardized trade data processing tool for Eagle Pacific Logistics.
-
Create Virtual Environment:
python -m venv venv -
Activate Environment:
- Windows PowerShell:
.\venv\Scripts\Activate.ps1 - Windows CMD:
.\venv\Scripts\activate.bat
- Windows PowerShell:
-
Install Dependencies:
pip install -r requirements.txt -
Implement your Credential:
- Rename file
secrets.toml.example->.streamlit/secrets.toml - Add Username/Password into file secrets.toml
- Rename file
-
Run Application:
streamlit run app.py
app.py: Main Streamlit UI.processor.py: Core logic for data cleaning, filtering, and calculation.requirements.txt: Python package dependencies.venv/: Local virtual environment.