Skip to content

Instantly share code, notes, and snippets.

@DJWOMS
Created September 7, 2022 10:38
Show Gist options
  • Save DJWOMS/d54f4bcc0b4481112bcf6dfc7061fba7 to your computer and use it in GitHub Desktop.
Save DJWOMS/d54f4bcc0b4481112bcf6dfc7061fba7 to your computer and use it in GitHub Desktop.
class Comment(object):
def __init__(self, email, content, created=None):
self.email = email
self.content = content
self.created = created or datetime.datetime.now()
comment = Comment(email='djwoms@example.com', content='My content')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment