Created
April 14, 2018 18:37
-
-
Save arukavina/8d80def570af43156658386a2eba2078 to your computer and use it in GitHub Desktop.
Python Header Imports
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
# 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__ = “rukavina.andrei@gmail.com” | |
__status__ = “Dev” | |
# {code} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment