Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Velocet's full-sized avatar
🎱
keep it coming >

Velocet Velocet

🎱
keep it coming >
View GitHub Profile
@Velocet
Velocet / Python Module Template
Created October 26, 2022 23:35 — forked from jfrfonseca/Python Module Template
Python Basic "Empty" Module File Template, with separations and PEP-8 conformity
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""A one-line description or name.
A longer description that spans multiple lines. Explain the purpose of the
file and provide a short list of the key classes/functions it contains. This
is the docstring shown when some does 'import foo;foo?' in IPython, so it
should be reasonably useful and informative.
"""
# -----------------------------------------------------------------------------