Skip to content

Instantly share code, notes, and snippets.

@zhiweio
Forked from arukavina/header1.py
Last active June 17, 2019 08:11
Show Gist options
  • Save zhiweio/9837e4c0ae0918b8157b88441e7f5207 to your computer and use it in GitHub Desktop.
Save zhiweio/9837e4c0ae0918b8157b88441e7f5207 to your computer and use it in GitHub Desktop.
Lazy C&P header
#!usr/bin/env python
# -*- 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
# […]
# Local 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}' # Prototype, Development or Production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment