mbosse99 commited on
Commit
d99d715
·
1 Parent(s): 6aba1d7

init commit

Browse files
Files changed (3) hide show
  1. .gitignore +3 -0
  2. app.py +9 -0
  3. requirements.txt +2 -0
.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ __pycache__/
2
+ .venv/
3
+ .env
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+ import json
3
+ import os
4
+ import uuid
5
+ import streamlit as st
6
+ from datetime import datetime, timedelta
7
+ from dotenv import load_dotenv
8
+
9
+ load_dotenv()
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ streamlit
2
+ python-dotenv