Skip to content

Instantly share code, notes, and snippets.

@marquicus
Last active January 23, 2020 01:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marquicus/8420acbdff130a0af4562560202d9468 to your computer and use it in GitHub Desktop.
Save marquicus/8420acbdff130a0af4562560202d9468 to your computer and use it in GitHub Desktop.
import argparse
import pandas as pd
def gas_prices(input, filetype="csv"):
"""Getting gas prices by day and month
1. Read csv or excel (assuming extension csv is a true csv file format, it might be another validations in real scenario)
1.1 Datetime Index is for month
2. Write to csv
3. Group and sum by colum Henry...
4. Format index starting with day it's the cause I use another df
5. Write to csv
"""
print("Getting daily prices")
if input[0].name.lower().endswith('.csv'):
dfg = pd.read_csv(input[0], skiprows=4)
else:
dfg = pd.read_excel(input[0], skiprows=4)
dfg.index = pd.to_datetime(dfg["Day"], format='%m/%d/%Y')
dfg.to_csv('gas_byday.csv', index=False)
print("Getting monthly prices")
dfg_month = dfg['Henry Hub Natural Gas Spot Price Dollars per Million Btu'].resample('M').sum()
df = pd.DataFrame(dfg_month, index=dfg_month.index.strftime("%d/%m/%Y"))
df.to_csv('gas_bymonth.csv', index=True)
print("Done")
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Gas Prices Exporter",
epilog="Report errors a marquicus@mail.com")
parser.add_argument('-i', '--input', nargs='+', required=True,
type=argparse.FileType('r'),
help='Input file, only .csv, xls or xslx extensions allowed')
kwargs = vars(parser.parse_args())
gas_prices(**kwargs)
# End of file
# vim: set ts=2 sw=2 noet:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment