Metadata-Version: 2.1
Name: meand23
Version: 0.0.2
Summary: 23andme API
Home-page: https://github.com/andyh2/meand23
Author: andyh2
Author-email: andyh2@mac.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# meand23

## Installation

`pip install meand23`

## Usage

Log in, identify profiles with a processed kit, and print each profile's genome:

```
import json
m23 = MeAnd23()
m23.login('your@gmail.com', 'your_password')
profiles = m23.profiles()
profiles_with_kit = []
for profile in profiles:
    try:
        m23.use_profile(profile)
        m23.chromosome(1)
        profiles_with_kit.append(profile)
    except MissingKitError:
        pass

for profile in profiles_with_kit:
    m23.use_profile(profile)
    for gene in m23.genome():
        print(gene)

```

