For newly created projects `make lint` would otherwise complain about the dead whitespace in `src/data/make_dataset.py`.
28 lines
871 B
Python
28 lines
871 B
Python
# -*- coding: utf-8 -*-
|
|
import os
|
|
import click
|
|
import logging
|
|
from dotenv import find_dotenv, load_dotenv
|
|
|
|
|
|
@click.command()
|
|
@click.argument('input_filepath', type=click.Path(exists=True))
|
|
@click.argument('output_filepath', type=click.Path())
|
|
def main(input_filepath, output_filepath):
|
|
logger = logging.getLogger(__name__)
|
|
logger.info('making final data set from raw data')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
log_fmt = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
|
|
logging.basicConfig(level=logging.INFO, format=log_fmt)
|
|
|
|
# not used in this stub but often useful for finding various files
|
|
project_dir = os.path.join(os.path.dirname(__file__), os.pardir, os.pardir)
|
|
|
|
# find .env automagically by walking up directories until it's found, then
|
|
# load up the .env entries as environment variables
|
|
load_dotenv(find_dotenv())
|
|
|
|
main()
|