Skip to content

Instantly share code, notes, and snippets.

View masayang's full-sized avatar

Masa Nakamura masayang

View GitHub Profile
@masayang
masayang / H.csv
Created February 17, 2015 07:12
timestamps of H's tweets as well as Y's tweets
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
2015-02-14 11:33:06
2015-02-14 11:29:04
2015-02-14 11:25:04
2015-02-14 09:46:53
2015-02-14 09:40:55
2015-02-14 09:31:07
2015-02-14 09:09:58
2015-02-14 08:51:48
2015-02-14 08:48:22
2015-02-14 08:46:36
@masayang
masayang / gist:5baa6fb8e6099e5f7762c66421cb0bef
Created March 20, 2017 06:45
flask_yahoo_finance initial directory
.
├── LICENSE
├── README.md
├── flask_yahoo_finance
│   └── __init__.py
├── setup.py
└── tests
└── __init__.py
$ pip install yahoo-finance
@masayang
masayang / setup.py
Created March 20, 2017 06:55
setup.py
from setuptools import setup
setup(
name='flask_yahoo_finance',
version='0.1',
long_description=__doc__,
packages=['flask_yahoo_finance'],
include_package_data=True,
zip_safe=False,
install_requires=['yahoo-finance']
@masayang
masayang / NYSE_tradingdays.py
Last active December 22, 2018 11:08 — forked from jckantor/NYSE_tradingdays.py
Python dateutil rule sets for NYSE trading days and holiday observances.
from dateutil import rrule
import datetime
# Generate ruleset for holiday observances on the NYSE
def NYSE_holidays(a=datetime.date.today(), b=datetime.date.today()+datetime.timedelta(days=365)):
rs = rrule.rruleset()
# Include all potential holiday observances
rs.rrule(rrule.rrule(rrule.YEARLY, dtstart=a, until=b, bymonth=12, bymonthday=31, byweekday=rrule.FR)) # New Years Day