Skip to content

Instantly share code, notes, and snippets.

@BarisSari
Last active January 7, 2021 18:43
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 BarisSari/698941522ad409accf5e67aaf1f25a16 to your computer and use it in GitHub Desktop.
Save BarisSari/698941522ad409accf5e67aaf1f25a16 to your computer and use it in GitHub Desktop.
src/foo/first_module.py
def example():
return 'Hi from foo'
class ExampleFooClass:
def __init__(self, name="example class"):
self.name = name
def print(self):
print(self.name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment