Skip to content

Instantly share code, notes, and snippets.

@javierg
Created January 31, 2017 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save javierg/97bf1e72c6814620fc47ad729aa2fbd5 to your computer and use it in GitHub Desktop.
Save javierg/97bf1e72c6814620fc47ad729aa2fbd5 to your computer and use it in GitHub Desktop.
class User:
"""Basic User class"""
def __init__(self, name, email, password):
self.name = name
self.email = email
self.password = password
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment