@@ -30,8 +30,9 @@ pandas 0.11.1
30
30
31
31
**New features **
32
32
33
- - pd.read_html() can now parse HTML string, files or urls and return dataframes
34
- courtesy of @cpcloud. (GH3477 _)
33
+ - ``pandas.read_html() `` can now parse HTML strings, files or urls and
34
+ returns a list of ``DataFrame `` s courtesy of @cpcloud. (GH3477 _, GH3605 _,
35
+ GH3606 _)
35
36
- Support for reading Amazon S3 files. (GH3504 _)
36
37
- Added module for reading and writing Stata files: pandas.io.stata (GH1512 _)
37
38
- Added support for writing in ``to_csv `` and reading in ``read_csv ``,
@@ -48,7 +49,7 @@ pandas 0.11.1
48
49
**Improvements to existing features **
49
50
50
51
- Fixed various issues with internal pprinting code, the repr() for various objects
51
- including TimeStamp and * Index now produces valid python code strings and
52
+ including TimeStamp and Index now produces valid python code strings and
52
53
can be used to recreate the object, (GH3038 _, GH3379 _, GH3251 _, GH3460 _)
53
54
- ``convert_objects `` now accepts a ``copy `` parameter (defaults to ``True ``)
54
55
- ``HDFStore ``
@@ -146,6 +147,9 @@ pandas 0.11.1
146
147
- ``sql.write_frame `` failing when writing a single column to sqlite (GH3628 _),
147
148
thanks to @stonebig
148
149
- Fix pivoting with ``nan `` in the index (GH3558 _)
150
+ - Fix running of bs4 tests when it is not installed (GH3605 _)
151
+ - Fix parsing of html table (GH3606 _)
152
+ - ``read_html() `` now only allows a single backend: ``html5lib `` (GH3616 _)
149
153
150
154
.. _GH3164 : https://github.com/pydata/pandas/issues/3164
151
155
.. _GH2786 : https://github.com/pydata/pandas/issues/2786
@@ -209,6 +213,9 @@ pandas 0.11.1
209
213
.. _GH3141 : https://github.com/pydata/pandas/issues/3141
210
214
.. _GH3628 : https://github.com/pydata/pandas/issues/3628
211
215
.. _GH3638 : https://github.com/pydata/pandas/issues/3638
216
+ .. _GH3605 : https://github.com/pydata/pandas/issues/3605
217
+ .. _GH3606 : https://github.com/pydata/pandas/issues/3606
218
+ .. _Gh3616 : https://github.com/pydata/pandas/issues/3616
212
219
213
220
pandas 0.11.0
214
221
=============
0 commit comments