Skip to content

Instantly share code, notes, and snippets.

@arukavina
Last active June 29, 2023 00:15
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save arukavina/deb4c40e62ae037018604c44909466da to your computer and use it in GitHub Desktop.
Save arukavina/deb4c40e62ae037018604c44909466da to your computer and use it in GitHub Desktop.
Lazy C&P header
#!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