@@ -21,19 +21,17 @@ Up to date remote data access for pandas, works for multiple versions of pandas.
21
21
.. image :: https://img.shields.io/badge/code%20style-black-000000.svg
22
22
:target: https://github.com/psf/black
23
23
24
+ Installation
25
+ ------------
24
26
25
- Usage
26
- -----
27
-
28
- Starting in 0.19.0, pandas no longer supports ``pandas.io.data `` or ``pandas.io.wb ``, so
29
- you must replace your imports from ``pandas.io `` with those from ``pandas_datareader ``:
27
+ Install using ``pip ``
30
28
31
- .. code-block :: python
29
+ .. code-block :: shell
32
30
33
- from pandas.io import data, wb # becomes
34
- from pandas_datareader import data, wb
31
+ pip install pandas-datareader
35
32
36
- Many functions from the data module have been included in the top level API.
33
+ Usage
34
+ -----
37
35
38
36
.. code-block :: python
39
37
@@ -52,9 +50,6 @@ A second copy of the stable documentation is hosted on
52
50
`Development documentation <https://pydata.github.io/pandas-datareader/devel/ >`__
53
51
is available for the latest changes in master.
54
52
55
- Installation
56
- ------------
57
-
58
53
Requirements
59
54
~~~~~~~~~~~~
60
55
@@ -83,23 +78,17 @@ Development and testing additionally requires:
83
78
* pytest-cov
84
79
* wrapt
85
80
86
- Install latest release version via pip
87
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88
-
89
- .. code-block :: shell
90
-
91
- $ pip install pandas-datareader
92
-
93
81
Install latest development version
94
82
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
95
83
96
84
.. code-block :: shell
97
85
98
- $ pip install git+https://github.com/pydata/pandas-datareader.git
86
+ pip install git+https://github.com/pydata/pandas-datareader.git
99
87
100
88
or
101
89
102
90
.. code-block :: shell
103
91
104
- $ git clone https://github.com/pydata/pandas-datareader.git
105
- $ python setup.py install
92
+ git clone https://github.com/pydata/pandas-datareader.git
93
+ cd pandas-datareader
94
+ python setup.py install
0 commit comments