Metadata-Version: 2.1
Name: llama-index-readers-snscrape-twitter
Version: 0.1.3
Summary: llama-index readers snscrape_twitter integration
License: MIT
Author: Your Name
Author-email: you@example.com
Maintainer: smyja
Requires-Python: >=3.8.1,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: llama-index-core (>=0.10.1,<0.11.0)
Requires-Dist: snscrape (>=0.7.0.20230622,<0.8.0.0)
Description-Content-Type: text/markdown

# Snscrape twitter Loader

```bash
pip install llama-index-readers-snscrape-twitter
```

This loader loads documents from Twitter using the Snscrape Python package.

## Usage

Here's an example usage of the SnscrapeReader.

```python
import os

from llama_index.readers.snscrape_twitter import SnscrapeTwitterReader

loader = SnscrapeReader()
documents = loader.load_data(username="elonmusk", num_tweets=10)
```

This loader is designed to be used as a way to load data into [LlamaIndex](https://github.com/run-llama/llama_index/).

