Metadata-Version: 2.1
Name: llama-index-readers-snscrape-twitter
Version: 0.3.0
Summary: llama-index readers snscrape_twitter integration
License: MIT
Author: Your Name
Author-email: you@example.com
Maintainer: smyja
Requires-Python: >=3.9,<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
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: llama-index-core (>=0.12.0,<0.13.0)
Requires-Dist: snscrape
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/).

