Metadata-Version: 2.1
Name: hypersquirrel
Version: 0.5
Summary: Scrapes posts from various websites
Home-page: UNKNOWN
Author: vka
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# hypersquirrel

## Usage

Module

```bash
pip install hypersquirrel
```

```python
from hypersquirrel import scrape

for file in scrape("scrape_url"):
    print(file)
```

Standalone

```bash
docker-compose up --build -d
```

```bash
curl --location --request POST 'localhost:5000/scrape' \
  --header 'Content-Type: application/json' \
  --data-raw '{ "url": "scrape_url" }'
```


