comparison apollo/ApolloUser.py @ 25:31a41ce128cc draft

planemo upload for repository https://github.com/Yating-L/jbrowse-archive-creator.git commit 691e5366893905d30943a3cb8cdfb6341f0f5362-dirty
author yating-l
date Fri, 13 Oct 2017 12:44:31 -0400
parents
children
comparison
equal deleted inserted replaced
24:bb6fdccef474 25:31a41ce128cc
1 #!/usr/bin/python
2
3 import os
4
5 class ApolloUser(object):
6 def __init__(self, user_email, firstname, lastname, password):
7 self.user_email = user_email
8 self.firstname = firstname
9 self.lastname = lastname
10 self.password = password