Skip to content

Instantly share code, notes, and snippets.

@arukavina
Created April 14, 2018 18:37
Show Gist options
  • Save arukavina/8d80def570af43156658386a2eba2078 to your computer and use it in GitHub Desktop.
Save arukavina/8d80def570af43156658386a2eba2078 to your computer and use it in GitHub Desktop.
Python Header Imports
# Futures
from __future__ import unicode_literals
from __future__ import print_function
# Generic/Built-in
import datetime
import argparse
# Other Libs
import youtube_dl
import pandas as pd
# Owned
from nostalgia_util import log_utils
from nostalgia_util import settings_util
__author__ = “Andrei Rukavina”
__copyright__ = “Copyright 2017, The Nostalgic project”
__credits__ = [“Andrei Rukavina”]
__license__ = “MPL 2.0”
__version__ = “0.1.0”
__maintainer__ = “Andrei Rukavina”
__email__ = “[email protected]
__status__ = “Dev”
# {code}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment