SynBioDex / pySBOL2

A pure Python implementation of the SBOL standard.
Apache License 2.0
21 stars 7 forks source link

Add login example to docs #363

Closed JoshuaUrrutia closed 4 years ago

JoshuaUrrutia commented 4 years ago

Hi, would you please add a login example to the documentation, something like:

import sbol2
SBH_USER = 'your_username'
SBH_PASSWORD = 'your_password'
sbh_stage = sbol2.PartShop('https://synbiohub.org')
sbh_stage.login(SBH_USER, SBH_PASSWORD)

Would be great, thanks!