Metadata-Version: 2.4
Name: word-datasets
Version: 0.1.0
Summary: Datasets and simple API for word datasets
Author: Contributors
License: MIT
Project-URL: Homepage, https://github.com/your-org/word-datasets
Project-URL: Repository, https://github.com/your-org/word-datasets
Keywords: datasets,words,nlp,data
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

## word-datasets (Python)

Python package for the word datasets.

### Build and publish

```bash
# (from repo root) stage data into the package source
python python-lib/tools/prepare_data.py

# build the package
cd python-lib
python -m build

# upload
twine upload dist/*
```

### Usage

```python
import word_datasets as wd
print(wd.list_datasets())

for i, w in enumerate(wd.iter_text_lines("words.txt")):
    if i < 5:
        print(w)
    else:
        break
```
