Update app.py
Browse files
app.py
CHANGED
|
@@ -25,6 +25,7 @@ st.write("""
|
|
| 25 |
- **Procurement Method**: The method used for awarding the contract.
|
| 26 |
""")
|
| 27 |
|
|
|
|
| 28 |
# Reading Main Data
|
| 29 |
url = "contract_awards_in_investment_project_financing_22-11-2024.csv"
|
| 30 |
df = pd.read_csv(url, parse_dates=['As of Date', 'Fiscal Year', 'Contract Signing Date'], date_format={'As of Date': '%Y-%m-%d', 'Contract Signing Date': '%Y-%m-%d'})
|
|
|
|
| 25 |
- **Procurement Method**: The method used for awarding the contract.
|
| 26 |
""")
|
| 27 |
|
| 28 |
+
st.write('Dataset is 99 MB, large enough for us to upload it on GitHub.')
|
| 29 |
# Reading Main Data
|
| 30 |
url = "contract_awards_in_investment_project_financing_22-11-2024.csv"
|
| 31 |
df = pd.read_csv(url, parse_dates=['As of Date', 'Fiscal Year', 'Contract Signing Date'], date_format={'As of Date': '%Y-%m-%d', 'Contract Signing Date': '%Y-%m-%d'})
|