SR05 commited on
Commit
98dd89a
·
verified ·
1 Parent(s): e762ee4

Update dataframe.py

Browse files
Files changed (1) hide show
  1. dataframe.py +3 -1
dataframe.py CHANGED
@@ -1,7 +1,9 @@
1
- import requests # Add this import statement
 
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