Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,13 @@
|
|
|
|
1 |
import requests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
from bs4 import BeautifulSoup
|
3 |
|
4 |
# URL of the website to scrape
|
|
|
1 |
+
import os
|
2 |
import requests
|
3 |
+
from bs4 import BeautifulSoup
|
4 |
+
from datetime import datetime, timedelta
|
5 |
+
import streamlit as st
|
6 |
+
import pandas as pd
|
7 |
+
import pytz
|
8 |
+
import pyexcel_ods3
|
9 |
+
import requests
|
10 |
+
|
11 |
from bs4 import BeautifulSoup
|
12 |
|
13 |
# URL of the website to scrape
|