comparison apollo/ApolloUser.py @ 1:2ae1e96a8380 draft

planemo upload for repository https://github.com/Yating-L/jbrowse-archive-creator.git commit a8c47ae0025953ef398bdc689dc5df5516edf686-dirty
author yating-l
date Tue, 24 Oct 2017 18:24:40 -0400
parents bc00f5c4c59e
children
comparison
equal deleted inserted replaced
0:bc00f5c4c59e 1:2ae1e96a8380
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 import os 3 import os
4 4
5 class ApolloUser(object): 5 class ApolloUser(object):
6 def __init__(self, user_email, firstname, lastname, password): 6 def __init__(self, user_email, password, firstname=None, lastname=None):
7 self.user_email = user_email 7 self.user_email = user_email
8 self.firstname = firstname 8 self.firstname = firstname
9 self.lastname = lastname 9 self.lastname = lastname
10 self.password = password 10 self.password = password