Skip to content

Instantly share code, notes, and snippets.

@kwakseonghun
Created August 10, 2017 01:00
Show Gist options
  • Save kwakseonghun/6e9cbd69df8bd0e06bd42a2fc6b85545 to your computer and use it in GitHub Desktop.
Save kwakseonghun/6e9cbd69df8bd0e06bd42a2fc6b85545 to your computer and use it in GitHub Desktop.
import pandas as pd
from pandas import DataFrame,Series
import pandas_datareader.data as web
import datetime
import numpy as np
start = datetime.datetime(2016, 3, 19)
end = datetime.datetime(2016, 7, 20)
kodex200 = web.DataReader("069500", "google", start, end)
ss=1
print(kodex200[1:20])
print(type(kodex200))
f = open('c:\\stock.txt', 'wt')
f.write('1')
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment