Update dataframe.py
Browse files- dataframe.py +3 -1
dataframe.py
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
-
|
|
|
2 |
import pandas as pd
|
3 |
import streamlit as st
|
4 |
from io import BytesIO
|
|
|
5 |
|
6 |
|
7 |
# Assuming fetch_data() is already defined, call this function to fetch the data
|
|
|
1 |
+
|
2 |
+
import requests # For making HTTP requests
|
3 |
import pandas as pd
|
4 |
import streamlit as st
|
5 |
from io import BytesIO
|
6 |
+
from bs4 import BeautifulSoup # Add this import for BeautifulSoup
|
7 |
|
8 |
|
9 |
# Assuming fetch_data() is already defined, call this function to fetch the data
|