Skip to content

Commit 0182dae

Browse files
committed
Documentation
1 parent b0e73db commit 0182dae

File tree

4 files changed

+33
-0
lines changed

4 files changed

+33
-0
lines changed

docs/source/readers/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Data Readers
1414
iex
1515
moex
1616
nasdaq-trader
17+
naver
1718
oecd
1819
quandl
1920
stooq

docs/source/readers/naver.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Naver Finance
2+
-------------
3+
4+
.. py:module:: pandas_datareader.naver
5+
6+
.. autoclass:: NaverDailyReader
7+
:members:
8+
:inherited-members: read

docs/source/remote_data.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Currently the following sources are supported:
4545
- :ref:`Nasdaq Trader symbol definitions<remote_data.nasdaq_symbols>`
4646
- :ref:`Stooq<remote_data.stooq>`
4747
- :ref:`MOEX<remote_data.moex>`
48+
- :ref:`Naver Finance<remote_data.naver>`
4849

4950
It should be noted, that various sources support different kinds of data, so not all sources implement the same methods and the data elements returned might also differ.
5051

@@ -686,3 +687,19 @@ The Moscow Exchange (MOEX) provides historical data.
686687
import pandas_datareader.data as web
687688
f = web.DataReader('USD000UTSTOM', 'moex', start='2017-07-01', end='2017-07-31')
688689
f.head()
690+
691+
.. _remote_data.naver:
692+
693+
Naver Finance Data
694+
==================
695+
`Naver Finance <https://finance.naver.com>`_ provides Korean stock market
696+
(`KOSPI`_, `KOSDAQ`_) historical data.
697+
698+
.. ipython:: python
699+
700+
import pandas_datareader.data as web
701+
df = web.DataReader('005930', 'naver', start='2019-09-10', end='2019-10-09')
702+
df.head()
703+
704+
.. _KOSPI: https://en.wikipedia.org/wiki/KOSPI
705+
.. _KOSDAQ: https://en.wikipedia.org/wiki/KOSDAQ

pandas_datareader/naver.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88

99

1010
class NaverDailyReader(_DailyBaseReader):
11+
"""Fetches daily historical data from Naver Finance.
12+
13+
:param symbols: A single symbol; multiple symbols are not currently supported.
14+
:param adjust_price: Not implemented
15+
:param interval: Not implemented
16+
:param adjust_dividends: Not implemented
17+
"""
1118
def __init__(
1219
self,
1320
symbols=None,

0 commit comments

Comments
 (0)