Skip to content

andyh2/meand23

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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('[email protected]', '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)

About

use 23andme API with python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages