File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ class ParserWarning(Warning):
34
34
_parser_params = """Also supports optionally iterating or breaking of the file
35
35
into chunks.
36
36
37
+ Additional help can be found in the `online docs for IO Tools
38
+ <http://pandas.pydata.org/pandas-docs/stable/io.html>`_.
39
+
37
40
Parameters
38
41
----------
39
42
filepath_or_buffer : string or file handle / StringIO
@@ -133,9 +136,12 @@ class ParserWarning(Warning):
133
136
nrows : int, default None
134
137
Number of rows of file to read. Useful for reading pieces of large files
135
138
iterator : boolean, default False
136
- Return TextFileReader object
139
+ Return TextFileReader object for iteration or getting chunks with ``get_chunk()``.
137
140
chunksize : int, default None
138
- Return TextFileReader object for iteration
141
+ Return TextFileReader object for iteration. `See IO Tools docs for more
142
+ information
143
+ <http://pandas.pydata.org/pandas-docs/stable/io.html#io-chunking>`_ on
144
+ ``iterator`` and ``chunksize``.
139
145
skipfooter : int, default 0
140
146
Number of lines at bottom of file to skip (Unsupported with engine='c')
141
147
converters : dict, default None
You can’t perform that action at this time.
0 commit comments