mirror of
https://github.com/tiennm99/crawl-prime.git
synced 2026-06-09 10:13:04 +00:00
28 lines
551 B
Markdown
28 lines
551 B
Markdown
# crawl-prime
|
|
|
|
Crawl all prime available on http://compoasso.free.fr/primelistweb/page/prime/liste_online_en.php
|
|
|
|
## Installation
|
|
|
|
1. Clone this repository:
|
|
```bash
|
|
git clone https://github.com/tiennm99/crawl-prime.git
|
|
cd crawl-prime
|
|
|
|
2. Create a virtual environment:
|
|
```bash
|
|
python -m venv venv
|
|
source venv/bin/activate # On macOS/Linux
|
|
venv\Scripts\activate # On Windows
|
|
```
|
|
|
|
3. Install the dependencies:
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
4. Run the script:
|
|
```bash
|
|
python main.py
|
|
```
|