For storing data, skip CSV if you’re doing big stuff. PostgreSQL or MongoDB scale better.
Use `pymongo` for MongoDB—super easy to dump JSON data.
```python
from pymongo import MongoClient
client = MongoClient('localhost', 27017)
db = client['scraped_data']
db.pages.insert_one({'url': '...', 'content': '...'})
```
Use `pymongo` for MongoDB—super easy to dump JSON data.
```python
from pymongo import MongoClient
client = MongoClient('localhost', 27017)
db = client['scraped_data']
db.pages.insert_one({'url': '...', 'content': '...'})
```
