An open API service indexing awesome lists of open source software.

https://github.com/anastasios3/webscrapper


https://github.com/anastasios3/webscrapper

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Web Scraper Project

## Disclaimer
It needs more work.

## Overview

A web scraper built with Flask and SQLAlchemy for scraping and storing web data.

## Features

- User authentication
- Data scraping
- Data storage

## Requirements

- Python 3.8+
- See `requirements.txt` for full list

## Installation

1. **Clone the repository:**
```sh
git clone https://github.com/Anastasios3/webScrapper.git
cd webScrapper

Create a virtual environment:

python -m venv scraper_env
scraper_env\Scripts\activate # On Windows
source scraper_env/bin/activate # On Unix/macOS

Install dependencies:

pip install -r requirements.txt

Set up the database:

flask shell
>>> from app import db
>>> db.create_all()
>>> exit()

Usage

Run the app:

python run.py

Open in browser:
Navigate to http://127.0.0.1:5000/.

License

MIT License