A Python-based web scraper that processes multiple queries from a text file and saves the results in JSONL format.
- Reads queries from
queries.txt
- Scrapes web data for each query
- Stores results in
results.jsonl
(JSON Lines format) - Easy to configure and extend
Install dependencies listed in requirments.txt
:
pip install -r requirments.txt
- Add your queries to
queries.txt
, one per line. - Run the scraper:
python main.py
- Results will be saved in
results.jsonl
.
main.py
— Main script for scrapingqueries.txt
— List of queries to processrequirments.txt
— Python dependenciesresults.jsonl
— Output file with scraped results
- Modify
main.py
to change scraping logic or output format. - Update
queries.txt
with your own queries.
MIT License
MYounus-Codes