Metadata-Version: 2.2
Name: trichology-terms
Version: 0.1.5
Summary: A small data package for trichology terms and definitions.
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=1.5

# Trichology Terms

A glossary dataset of trichological terms.


## Dataset

- `data/trichology_terms.csv`
- `data/trichology_terms.json`

Rows: **412**

## Python usage

```python
from trichology_terms import load_terms, search_terms, get_definition, list_categories

df = load_terms()
print(df.head())
print(" ---------------- ")

print(get_definition("Alopecia"))
print(" ---------------- ")
print(search_terms("scalp"))
print(" ---------------- ")
print(list_categories())
```

## Columns

- `term_id`
- `term`
- `definition`
- `category`


# The glossary dataset is provided for educational and research use. Definitions are based on personal learning notes and should not be treated as clinical advice.
