Last active
June 28, 2024 20:30
-
-
Save arukavina/deb4c40e62ae037018604c44909466da to your computer and use it in GitHub Desktop.
Lazy C&P header
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!interpreter [optional-arg] | |
# -*- coding: utf-8 -*- | |
""" | |
{Description} | |
{License_info} | |
""" | |
# Futures | |
from __future__ import print_function | |
# […] | |
# Built-in/Generic Imports | |
import os | |
import sys | |
# […] | |
# Libs | |
import pandas as pd # Or any other | |
# […] | |
# Own modules | |
from {path} import {class} | |
# […] | |
__author__ = '{author}' | |
__copyright__ = 'Copyright {year}, {project_name}' | |
__credits__ = ['{credit_list}'] | |
__license__ = '{license}' | |
__version__ = '{mayor}.{minor}.{rel}' | |
__maintainer__ = '{maintainer}' | |
__email__ = '{contact_email}' | |
__status__ = '{dev_status}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment