ScrapeMaster is a Streamlit-based web scraping application designed to simplify the process of extracting data from web pages. It allows users to specify URLs and data fields interactively, facilitating the extraction and manipulation of web data.
Before you begin, ensure you have the following installed:
Follow these steps to get your development environment running:
# Clone the repository
git clone https://github.com/reda-marzouk608/scrape-master
cd scrape-master
# It's recommended to create a virtual environment
python -m venv venv
# Activate the virtual environment
# On Windows
venv\Scripts\activate
# On MacOS/Linux
source venv/bin/activate
# Install the required packages
pip install -r requirements.txt
To run ScrapeMaster, navigate to the project directory and run the following command:
streamlit run streamlit_app.py
After launching the application, open your web browser to the indicated address (typically http://localhost:8501). Use the sidebar to input the URL and fields you wish to scrape, then click the "Scrape" button to see results.