/usr/local/lib64/python3.6/site-packages/pandas/io/__pycache__
NameSizeModeActions
api.cpython-36.pyc10960644editdlrm
clipboards.cpython-36.pyc33920644editdlrm
common.cpython-36.pyc140640644editdlrm
date_converters.cpython-36.pyc19470644editdlrm
feather_format.cpython-36.pyc29360644editdlrm
gbq.cpython-36.pyc74590644editdlrm
html.cpython-36.pyc319770644editdlrm
orc.cpython-36.pyc18020644editdlrm
parquet.cpython-36.pyc95000644editdlrm
parsers.cpython-36.pyc882000644editdlrm
pickle.cpython-36.pyc56790644editdlrm
pytables.cpython-36.pyc1308050644editdlrm
spss.cpython-36.pyc13280644editdlrm
sql.cpython-36.pyc522830644editdlrm
stata.cpython-36.pyc975630644editdlrm
__init__.cpython-36.pyc1450644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/pandas/io/__pycache__/parsers.cpython-36.pyc (88200B)
3 :%Eg1@s UdZddlmZmZddlZddlZddlmZmZddl Z ddl Z ddl Z ddl m Z ddlmZmZmZmZmZmZmZddlZddlZddljjZddljjZddljj Z ddlm!Z!ddl"m#Z#dd l$m%Z%m&Z&dd l'm(Z(m)Z)m*Z*m+Z+dd l,m-Z-dd l.m/Z/dd l0m1Z1m2Z2m3Z3m4Z4m5Z5m6Z6m7Z7m8Z8m9Z9m:Z:m;Z;mZ>m?Z?m@Z@ddlAmBZBddlCmDZDddlEmFZFddlGmHZHddlImJZJddlKmLZLmMZMmNZNmOZOddlPmQZQddlRmSZTddlUmVZVmWZWmXZXmYZYddlZm[Z[dZ\de dj]e^e!ddddZ_dsdd Z`d!d"Zae%d#d$d%Zbddd&ejcd'd(dd)dddddddd'ddddd'ddd*d(d(d(dddd(dd(dd'd(d'd+%Zdd(d'd'd(d'd'dd,Zed)d-dd.Zfd/hZgd0d1hZhiZieejefiekZleejle-e_jmd2d3d4d5d6dd)dddd(dd'dddddd(ddddd'd'd(d'd(d(d(dd(d'd(dd)dd*dd&ejcd'ddddd'd'd(eed0d(df0e%ejd7d8d2Zne-e_jmd9d:d;d5dd?ZpGd@dAdAejqZrdBdCZsduee&eteeufdDdEdFZvdGdHZwdIdJZxdKdLZydMdNZzdOdPZ{GdQdRdRZ|GdSdTdTe|Z}dUdVZ~dWdXZGdYdZdZe|Zdvd[d\Zdwd]d^Zd_d`ZdxdadbZdcddZdydedfZdgdhZdidjZdkdlZdmdnZGdodpdpejqZGdqdrdreZdS)zzM Module contains tools for processing files into DataFrames or other objects )abc defaultdictN)StringIO TextIOWrapper)fill)AnyDictIterableListOptionalSequenceSet) STR_NA_VALUES)parsing)FilePathOrBufferUnion)AbstractMethodErrorEmptyDataError ParserError ParserWarning)Appender)astype_nansafe) ensure_object ensure_str is_bool_dtypeis_categorical_dtype is_dict_likeis_dtype_equalis_extension_array_dtype is_file_likeis_float is_integeris_integer_dtype is_list_likeis_object_dtype is_scalaris_string_dtype pandas_dtype)CategoricalDtype)isna) algorithms) Categorical) DataFrame)Index MultiIndex RangeIndexensure_index_from_sequences)Series) datetimes)get_filepath_or_buffer get_handleinfer_compressionvalidate_header_arg)generic_parserua {summary} Also supports optionally iterating or breaking of the file into chunks. Additional help can be found in the online docs for `IO Tools `_. Parameters ---------- filepath_or_buffer : str, path object or file-like object Any valid string path is acceptable. The string could be a URL. Valid URL schemes include http, ftp, s3, gs, and file. For file URLs, a host is expected. A local file could be: file://localhost/path/to/table.csv. If you want to pass in a path object, pandas accepts any ``os.PathLike``. By file-like object, we refer to objects with a ``read()`` method, such as a file handler (e.g. via builtin ``open`` function) or ``StringIO``. sep : str, default {_default_sep} Delimiter to use. If sep is None, the C engine cannot automatically detect the separator, but the Python parsing engine can, meaning the latter will be used and automatically detect the separator by Python's builtin sniffer tool, ``csv.Sniffer``. In addition, separators longer than 1 character and different from ``'\s+'`` will be interpreted as regular expressions and will also force the use of the Python parsing engine. Note that regex delimiters are prone to ignoring quoted data. Regex example: ``'\r\t'``. delimiter : str, default ``None`` Alias for sep. header : int, list of int, default 'infer' Row number(s) to use as the column names, and the start of the data. Default behavior is to infer the column names: if no names are passed the behavior is identical to ``header=0`` and column names are inferred from the first line of the file, if column names are passed explicitly then the behavior is identical to ``header=None``. Explicitly pass ``header=0`` to be able to replace existing names. The header can be a list of integers that specify row locations for a multi-index on the columns e.g. [0,1,3]. Intervening rows that are not specified will be skipped (e.g. 2 in this example is skipped). Note that this parameter ignores commented lines and empty lines if ``skip_blank_lines=True``, so ``header=0`` denotes the first line of data rather than the first line of the file. names : array-like, optional List of column names to use. If the file contains a header row, then you should explicitly pass ``header=0`` to override the column names. Duplicates in this list are not allowed. index_col : int, str, sequence of int / str, or False, default ``None`` Column(s) to use as the row labels of the ``DataFrame``, either given as string name or column index. If a sequence of int / str is given, a MultiIndex is used. Note: ``index_col=False`` can be used to force pandas to *not* use the first column as the index, e.g. when you have a malformed file with delimiters at the end of each line. usecols : list-like or callable, optional Return a subset of the columns. If list-like, all elements must either be positional (i.e. integer indices into the document columns) or strings that correspond to column names provided either by the user in `names` or inferred from the document header row(s). For example, a valid list-like `usecols` parameter would be ``[0, 1, 2]`` or ``['foo', 'bar', 'baz']``. Element order is ignored, so ``usecols=[0, 1]`` is the same as ``[1, 0]``. To instantiate a DataFrame from ``data`` with element order preserved use ``pd.read_csv(data, usecols=['foo', 'bar'])[['foo', 'bar']]`` for columns in ``['foo', 'bar']`` order or ``pd.read_csv(data, usecols=['foo', 'bar'])[['bar', 'foo']]`` for ``['bar', 'foo']`` order. If callable, the callable function will be evaluated against the column names, returning names where the callable function evaluates to True. An example of a valid callable argument would be ``lambda x: x.upper() in ['AAA', 'BBB', 'DDD']``. Using this parameter results in much faster parsing time and lower memory usage. squeeze : bool, default False If the parsed data only contains one column then return a Series. prefix : str, optional Prefix to add to column numbers when no header, e.g. 'X' for X0, X1, ... mangle_dupe_cols : bool, default True Duplicate columns will be specified as 'X', 'X.1', ...'X.N', rather than 'X'...'X'. Passing in False will cause data to be overwritten if there are duplicate names in the columns. dtype : Type name or dict of column -> type, optional Data type for data or columns. E.g. {{'a': np.float64, 'b': np.int32, 'c': 'Int64'}} Use `str` or `object` together with suitable `na_values` settings to preserve and not interpret dtype. If converters are specified, they will be applied INSTEAD of dtype conversion. engine : {{'c', 'python'}}, optional Parser engine to use. The C engine is faster while the python engine is currently more feature-complete. converters : dict, optional Dict of functions for converting values in certain columns. Keys can either be integers or column labels. true_values : list, optional Values to consider as True. false_values : list, optional Values to consider as False. skipinitialspace : bool, default False Skip spaces after delimiter. skiprows : list-like, int or callable, optional Line numbers to skip (0-indexed) or number of lines to skip (int) at the start of the file. If callable, the callable function will be evaluated against the row indices, returning True if the row should be skipped and False otherwise. An example of a valid callable argument would be ``lambda x: x in [0, 2]``. skipfooter : int, default 0 Number of lines at bottom of file to skip (Unsupported with engine='c'). nrows : int, optional Number of rows of file to read. Useful for reading pieces of large files. na_values : scalar, str, list-like, or dict, optional Additional strings to recognize as NA/NaN. If dict passed, specific per-column NA values. By default the following values are interpreted as NaN: 'z', 'Fz )subsequent_indenta"'. keep_default_na : bool, default True Whether or not to include the default NaN values when parsing the data. Depending on whether `na_values` is passed in, the behavior is as follows: * If `keep_default_na` is True, and `na_values` are specified, `na_values` is appended to the default NaN values used for parsing. * If `keep_default_na` is True, and `na_values` are not specified, only the default NaN values are used for parsing. * If `keep_default_na` is False, and `na_values` are specified, only the NaN values specified `na_values` are used for parsing. * If `keep_default_na` is False, and `na_values` are not specified, no strings will be parsed as NaN. Note that if `na_filter` is passed in as False, the `keep_default_na` and `na_values` parameters will be ignored. na_filter : bool, default True Detect missing value markers (empty strings and the value of na_values). In data without any NAs, passing na_filter=False can improve the performance of reading a large file. verbose : bool, default False Indicate number of NA values placed in non-numeric columns. skip_blank_lines : bool, default True If True, skip over blank lines rather than interpreting as NaN values. parse_dates : bool or list of int or names or list of lists or dict, default False The behavior is as follows: * boolean. If True -> try parsing the index. * list of int or names. e.g. If [1, 2, 3] -> try parsing columns 1, 2, 3 each as a separate date column. * list of lists. e.g. If [[1, 3]] -> combine columns 1 and 3 and parse as a single date column. * dict, e.g. {{'foo' : [1, 3]}} -> parse columns 1, 3 as date and call result 'foo' If a column or index cannot be represented as an array of datetimes, say because of an unparseable value or a mixture of timezones, the column or index will be returned unaltered as an object data type. For non-standard datetime parsing, use ``pd.to_datetime`` after ``pd.read_csv``. To parse an index or column with a mixture of timezones, specify ``date_parser`` to be a partially-applied :func:`pandas.to_datetime` with ``utc=True``. See :ref:`io.csv.mixed_timezones` for more. Note: A fast-path exists for iso8601-formatted dates. infer_datetime_format : bool, default False If True and `parse_dates` is enabled, pandas will attempt to infer the format of the datetime strings in the columns, and if it can be inferred, switch to a faster method of parsing them. In some cases this can increase the parsing speed by 5-10x. keep_date_col : bool, default False If True and `parse_dates` specifies combining multiple columns then keep the original columns. date_parser : function, optional Function to use for converting a sequence of string columns to an array of datetime instances. The default uses ``dateutil.parser.parser`` to do the conversion. Pandas will try to call `date_parser` in three different ways, advancing to the next if an exception occurs: 1) Pass one or more arrays (as defined by `parse_dates`) as arguments; 2) concatenate (row-wise) the string values from the columns defined by `parse_dates` into a single array and pass that; and 3) call `date_parser` once for each row using one or more strings (corresponding to the columns defined by `parse_dates`) as arguments. dayfirst : bool, default False DD/MM format dates, international and European format. cache_dates : bool, default True If True, use a cache of unique, converted dates to apply the datetime conversion. May produce significant speed-up when parsing duplicate date strings, especially ones with timezone offsets. .. versionadded:: 0.25.0 iterator : bool, default False Return TextFileReader object for iteration or getting chunks with ``get_chunk()``. chunksize : int, optional Return TextFileReader object for iteration. See the `IO Tools docs `_ for more information on ``iterator`` and ``chunksize``. compression : {{'infer', 'gzip', 'bz2', 'zip', 'xz', None}}, default 'infer' For on-the-fly decompression of on-disk data. If 'infer' and `filepath_or_buffer` is path-like, then detect compression from the following extensions: '.gz', '.bz2', '.zip', or '.xz' (otherwise no decompression). If using 'zip', the ZIP file must contain only one data file to be read in. Set to None for no decompression. thousands : str, optional Thousands separator. decimal : str, default '.' Character to recognize as decimal point (e.g. use ',' for European data). lineterminator : str (length 1), optional Character to break file into lines. Only valid with C parser. quotechar : str (length 1), optional The character used to denote the start and end of a quoted item. Quoted items can include the delimiter and it will be ignored. quoting : int or csv.QUOTE_* instance, default 0 Control field quoting behavior per ``csv.QUOTE_*`` constants. Use one of QUOTE_MINIMAL (0), QUOTE_ALL (1), QUOTE_NONNUMERIC (2) or QUOTE_NONE (3). doublequote : bool, default ``True`` When quotechar is specified and quoting is not ``QUOTE_NONE``, indicate whether or not to interpret two consecutive quotechar elements INSIDE a field as a single ``quotechar`` element. escapechar : str (length 1), optional One-character string used to escape other characters. comment : str, optional Indicates remainder of line should not be parsed. If found at the beginning of a line, the line will be ignored altogether. This parameter must be a single character. Like empty lines (as long as ``skip_blank_lines=True``), fully commented lines are ignored by the parameter `header` but not by `skiprows`. For example, if ``comment='#'``, parsing ``#empty\na,b,c\n1,2,3`` with ``header=0`` will result in 'a,b,c' being treated as the header. encoding : str, optional Encoding to use for UTF when reading/writing (ex. 'utf-8'). `List of Python standard encodings `_ . dialect : str or csv.Dialect, optional If provided, this parameter will override values (default or not) for the following parameters: `delimiter`, `doublequote`, `escapechar`, `skipinitialspace`, `quotechar`, and `quoting`. If it is necessary to override values, a ParserWarning will be issued. See csv.Dialect documentation for more details. error_bad_lines : bool, default True Lines with too many fields (e.g. a csv line with too many commas) will by default cause an exception to be raised, and no DataFrame will be returned. If False, then these "bad lines" will dropped from the DataFrame that is returned. warn_bad_lines : bool, default True If error_bad_lines is False, and warn_bad_lines is True, a warning for each "bad line" will be output. delim_whitespace : bool, default False Specifies whether or not whitespace (e.g. ``' '`` or ``' '``) will be used as the sep. Equivalent to setting ``sep='\s+'``. If this option is set to True, nothing should be passed in for the ``delimiter`` parameter. low_memory : bool, default True Internally process the file in chunks, resulting in lower memory use while parsing, but possibly mixed type inference. To ensure no mixed types either set False, or specify the type with the `dtype` parameter. Note that the entire file is read into a single DataFrame regardless, use the `chunksize` or `iterator` parameter to return the data in chunks. (Only valid with C parser). memory_map : bool, default False If a filepath is provided for `filepath_or_buffer`, map the file object directly onto memory and access the data directly from there. Using this option can improve performance because there is no longer any I/O overhead. float_precision : str, optional Specifies which converter the C engine should use for floating-point values. The options are `None` for the ordinary converter, `high` for the high-precision converter, and `round_trip` for the round-trip converter. Returns ------- DataFrame or TextParser A comma-separated values (csv) file is returned as two-dimensional data structure with labeled axes. See Also -------- DataFrame.to_csv : Write DataFrame to a comma-separated values (csv) file. read_csv : Read a comma-separated values (csv) file into DataFrame. read_fwf : Read a table of fixed-width formatted lines into DataFrame. Examples -------- >>> pd.{func_name}('data.csv') # doctest: +SKIP cCs^d|dd|d}|dk rZt|rBt||kr8t|t|}nt|oP||ksZt||S)a Checks whether the 'name' parameter for parsing is either an integer OR float that can SAFELY be cast to an integer without losing accuracy. Raises a ValueError if that is not the case. Parameters ---------- name : string Parameter name (used for error reporting) val : int or float The value to check min_val : int Minimum allowed value (val < min_val will result in a ValueError) 'sz' must be an integer >=dN)r int ValueErrorr!)namevalZmin_valmsgrB=/usr/local/lib64/python3.6/site-packages/pandas/io/parsers.py_validate_integerqs  rDcCsH|dk rDt|tt|kr$tdt|ddp:t|tjsDtddS)aZ Raise ValueError if the `names` parameter contains duplicates or has an invalid data type. Parameters ---------- names : array-like or None An array containing a list of the names used for the output DataFrame. Raises ------ ValueError If names are not unique or are not ordered (e.g. set). Nz Duplicate names are not allowed.F)Z allow_setsz&Names should be an ordered collection.)lensetr>r# isinstancerKeysView)namesrBrBrC_validate_namess rJ)filepath_or_bufferc Cs"|jdd}|dk r.tjdd|j}||d<|jdd}t||}t|||\}}}}||d<|jdddk rt|dtrd |d<|jd d }td |jd dd }|jdd} t |jddt |f|} |s|r| Sz| j | } Wd| j X|ry |j Wnt k rYnX| S)zGeneric reader of line files.encodingN_- compressioninfer date_parser parse_datesTiteratorF chunksizenrowsrI)getresublowerr5r3rGboolrDrJTextFileReaderreadcloser>) rKkwdsrLrOZ fp_or_bufrMZ should_closerSrTrVparserdatarBrBrC_reads8        rb"TFrP.)% delimiter escapechar quotecharquoting doublequoteskipinitialspacelineterminatorheader index_colrIprefixskiprows skipfooterrV na_valueskeep_default_na true_values false_values convertersdtype cache_dates thousandscommentdecimalrR keep_date_coldayfirstrQusecolsrTverboserLsqueezerOmangle_dupe_colsinfer_datetime_formatskip_blank_lines)delim_whitespace na_filter low_memory memory_maperror_bad_lineswarn_bad_linesfloat_precisiond)colspecs infer_nrowswidthsrprrread_csvz8Read a comma-separated values (csv) file into DataFrame.z',') func_namesummaryZ _default_sep,)rKrzc152Csd}1|*dk r(|dko||1k}2t|2d}3nt}3|dkr:|}|-rN||1krNtd| dk r\d}4nd} d}4|3j|| |*| |4|&|'|$|%||#|||||||| |||!|(|"||||||||| | |||)||/|0||-|,|+|.| ||d0t||3S)Nr) sep_overridezXSpecified a delimiter with both sep and delim_whitespace=True; you can only specify one.TcF)0reenginedialectrOengine_specifiedrirfrgrhrjrkrlrmrIrnrorprqrsrtrrrxryrzrRr{r|rQrwrVrSrTrurvr}r~rLrrrrrrrrrrr)dictr>updaterb)5rKseprerlrIrmr}rrnrrvrrursrtrjrorprVrqrrrr~rrRrr{rQr|rwrSrTrOrxrzrkrgrhrirfryrLrrrrrrrZ default_seprr_rrBrBrCrsN   read_tablez+Read general delimited file into DataFrame.z'\\t' (tab-stop) c11Cs0|-r|dk s|dkrtd|-r$d}tftS)NrzXSpecified a delimiter with both sep and delim_whitespace=True; you can only specify one.r)r>rlocals)1rKrrerlrIrmr}rrnrrvrrursrtrjrorprVrqrrrr~rrRrr{rQr|rwrSrTrOrxrzrkrgrhrirfryrLrrrrrrrrBrBrCrs CcKs|dkr|dkrtdn|d kr2|dk r2td|dk rlgd}}x&|D]}|j|||f||7}qJW||d<||d<d|d <t||S) aX Read a table of fixed-width formatted lines into DataFrame. Also supports optionally iterating or breaking of the file into chunks. Additional help can be found in the `online docs for IO Tools `_. Parameters ---------- filepath_or_buffer : str, path object or file-like object Any valid string path is acceptable. The string could be a URL. Valid URL schemes include http, ftp, s3, and file. For file URLs, a host is expected. A local file could be: ``file://localhost/path/to/table.csv``. If you want to pass in a path object, pandas accepts any ``os.PathLike``. By file-like object, we refer to objects with a ``read()`` method, such as a file handler (e.g. via builtin ``open`` function) or ``StringIO``. colspecs : list of tuple (int, int) or 'infer'. optional A list of tuples giving the extents of the fixed-width fields of each line as half-open intervals (i.e., [from, to[ ). String value 'infer' can be used to instruct the parser to try detecting the column specifications from the first 100 rows of the data which are not being skipped via skiprows (default='infer'). widths : list of int, optional A list of field widths which can be used instead of 'colspecs' if the intervals are contiguous. infer_nrows : int, default 100 The number of rows to consider when letting the parser determine the `colspecs`. .. versionadded:: 0.24.0 **kwds : optional Optional keyword arguments can be passed to ``TextFileReader``. Returns ------- DataFrame or TextParser A comma-separated values (csv) file is returned as two-dimensional data structure with labeled axes. See Also -------- DataFrame.to_csv : Write DataFrame to a comma-separated values (csv) file. read_csv : Read a comma-separated values (csv) file into DataFrame. Examples -------- >>> pd.read_fwf('data.csv') # doctest: +SKIP Nz&Must specify either colspecs or widthsrPz4You must specify only one of 'widths' and 'colspecs'rrrz python-fwfr)NrP)r>appendrb)rKrrrr_colwrBrBrCread_fwfs?    rc@speZdZdZdddZddZddZd d Zd d Zd dZ dddZ ddZ dddZ ddZ dddZdS)r\zF Passed dialect overrides any of the related parser options NcKs:||_|dk rd}nd}d}|jd||_|jddk r6|d}|tjkrXtj|}xd"D]}yt||}Wn8tk r}ztd |dd |WYdd}~XnXt |} |j|| } g} | | ko| |krd|d| d|d} |dko|j dds| j | | r*t j dj| tdd|||<q^W|jdrv|jdsZ|jdrbtd|jdrvtd|jdddkr|jddkrdnd|d<||_||_d|_d|_|j|} | j dd|_| j dd|_| j d d|_|j|||_|j| |\|_|_d!|kr*|d!|jd!<|j|jdS)#NTpythonFrrrerirfrjrgrhzInvalid dialect z providedzConflicting values for 'z': 'z+' was provided, but the dialect specifies 'z%'. Using the dialect-specified value.rz ) stacklevelrprSrTz*'skipfooter' not supported for 'iteration'rVz''skipfooter' not supported with 'nrows'rlrPrIrrhas_index_names)rerirfrjrgrh)frW_engine_specifiedcsv list_dialects get_dialectgetattrAttributeErrorr>_parser_defaultspoprwarningswarnjoinr orig_optionsr_engine_currow_get_options_with_defaultsrTrVr_check_file_or_buffer_clean_optionsoptions _make_engine)selfrrr_rrparamZ dialect_valerrparser_defaultprovidedZ conflict_msgsrArrBrBrC__init__Zsl         zTextFileReader.__init__cCs|jjdS)N)rr^)rrBrBrCr^szTextFileReader.closecCs|j}i}x@tjD]4\}}|j||}|dkr@| r@tdq|||<qWxtjD]\}}||kr||}|dkr||krd|kr|tkrq|tj||krqtdt|dt|dn tj||}|||<qVW|dkr x$t jD]\}}|j||||<qW|S) Nrz3Setting mangle_dupe_cols=False is not supported yetrrzThe z" option is not supported with the z enginez python-fwf) rritemsrWr>_c_parser_defaults_python_unsupported_deprecated_defaultsrepr _fwf_defaults)rrr_rZargnamedefaultvaluerBrBrCrs.      z)TextFileReader._get_options_with_defaultscCs0t|r,d}|dkr,t|| r,d}t||S)N__next__rz)rrrZ next_attrrArBrBrCrs z$TextFileReader._check_file_or_buffercCs|j}|j}d}|d}|d}|dkr>|ddkr>d}d}tjpHd}|dkrj| rj|dkrhd }d}n|dk rt|d kr|dkr|d krd |d<|d=n|d*krd}d}n||rd|krd |d<nf|dk r,d } yt|j|d krd} Wntk rd} YnX| r,|d+kr,d|d}d}|d} | dk r|t| tt fr|t| d kr|t | dkr||d,kr|d}d}|r|rt ||dkrxt D] } || =qWd|krxFt D]>} |r|| t| krt d|dt| d|| =qW|r tjd|dtdd|d} |d} |d}|d}|d}t|d d!}xVtD]N} t| }t| }d"t| d#}|j| ||kr||d$7}n||| <q^W|d!krtj|td%d| d krt d&t| rt| tttjfs| g} | |d<| dk rt| n| } |dk rJt|tsNtd't|j ni}|d(}t!||\}}|dkrt"|rtt#|}|dkrt$}nt%|st$|}| |d<||d<||d<||d)<||d<||fS)-Nrerrrprz*the 'c' engine does not support skipfooterrzutf-8zDthe 'c' engine does not support sep=None with delim_whitespace=FalserUz\s+T python-fwfzxthe 'c' engine does not support regex separators (separators > 1 char and different from '\s+' are interpreted as regex)Fzthe separator encoded in zF is > 1 char long, and the 'c' engine does not support such separatorsrgzxord(quotechar) > 127, meaning the quotechar is larger than one byte, and the 'c' engine does not support such quotecharsz,Falling back to the 'python' engine because z, but this causes z= to be ignored as it is not supported by the 'python' engine.z;; you can avoid this warning by specifying engine='python'.)rrmrIrurqrorlzThe zF argument has been deprecated and will be removed in a future version.z rz)The value of index_col couldn't be 'True'z8Type converters must be a dict or subclass, input was a rr na_fvalues)rr)rr)rr)&copyrsysgetfilesystemencodingrEencodeUnicodeDecodeErrorrGstrbytesordr>_c_unsupportedrrrrrrr6_deprecated_argsrrW FutureWarning _is_index_collisttuplenpndarrayr TypeErrortype__name___clean_na_valuesr!rangerFcallable)rrrresultrZfallback_reasonrrrLZ encodeablergargrmrIrurqroZ depr_warningrZ depr_defaultrArrrrBrBrCrs                           zTextFileReader._clean_optionsc Cs,y|jStk r&|jYnXdS)N) get_chunk StopIterationr^)rrBrBrCrs zTextFileReader.__next__rcCs^|dkrt|jf|j|_n>|dkr*t}n|dkr8t}ntd|d||jf|j|_dS)Nrrz python-fwfzUnknown engine: z3 (valid options are "c", "python", or "python-fwf"))CParserWrapperrrr PythonParserFixedWidthFieldParserr>)rrklassrBrBrCrszTextFileReader._make_enginecCs t|dS)N)r)rrBrBrC_failover_to_pythonsz"TextFileReader._failover_to_pythoncCstd|}|jj|}|j|\}}}|dkr`|rZttt|j}t|j |j |}qhd}nt|}t |||d}|j |7_ |j rt|j dkr||j dj S|S)NrVr)columnsindexrU)rDrr] _create_indexrEnextitervaluesr/rr,rrr)rrVretrrcol_dictnew_rowsdfrBrBrCr]s  zTextFileReader.readcCs|\}}}|||fS)NrB)rrrrrrBrBrCrs zTextFileReader._create_indexcCsF|dkr|j}|jdk r:|j|jkr(tt||j|j}|j|dS)N)rV)rTrVrrminr])rsizerBrBrCrs  zTextFileReader.get_chunk)N)r)N)N)r __module__ __qualname____doc__rr^rrrrrrr]rrrBrBrBrCr\Ss \&%  r\cCs|dk o|dk S)NFrB)rrBrBrCrsr)rmcs@dksttrgt|o>t|t o>tfdd|DS)a Check whether or not the `columns` parameter could be converted into a MultiIndex. Parameters ---------- columns : array-like Object which may or may not be convertible into a MultiIndex index_col : None, bool or list, optional Column or columns to use as the (possibly hierarchical) index Returns ------- boolean : Whether or not columns could become a MultiIndex Nc3s$|]}|tkrt|tVqdS)N)rrGr).0r)rmrBrC sz,_is_potential_multi_index..)rGr[rEr.all)rrmrB)rmrC_is_potential_multi_indexs  rcs"trfddt|DSS)z Check whether or not the 'usecols' parameter is a callable. If so, enumerates the 'names' parameter and returns a set of indices for each entry in 'names' that evaluates to True. If not a callable, returns 'usecols'. csh|]\}}|r|qSrBrB)rir?)r}rBrC sz$_evaluate_usecols..)r enumerate)r}rIrB)r}rC_evaluate_usecolssrcs0fdd|D}t|dkr,td||S)a% Validates that all usecols are present in a given list of names. If not, raise a ValueError that shows what usecols are missing. Parameters ---------- usecols : iterable of usecols The columns to validate are present in names. names : iterable of names The column names to check against. Returns ------- usecols : iterable of usecols The `usecols` parameter if the validation succeeds. Raises ------ ValueError : Columns were missing. Error message will list them. csg|]}|kr|qSrBrB)rr)rIrBrC sz+_validate_usecols_names..rz>Usecols do not match columns, columns expected but not found: )rEr>)r}rImissingrB)rIrC_validate_usecols_namess   rcCs$t|std|dkr td|S)a Validate the 'skipfooter' parameter. Checks whether 'skipfooter' is a non-negative integer. Raises a ValueError if that is not the case. Parameters ---------- skipfooter : non-negative integer The number of rows to skip at the end of the file. Returns ------- validated_skipfooter : non-negative integer The original input if the validation succeeds. Raises ------ ValueError : 'skipfooter' was not a non-negative integer. zskipfooter must be an integerrzskipfooter cannot be negative)r!r>)rprBrBrC_validate_skipfooter_args rcCsbd}|dk rZt|r|dfSt|s,t|tj|dd}|dkrJt|t|}||fS|dfS) a+ Validate the 'usecols' parameter. Checks whether or not the 'usecols' parameter contains all integers (column selection by index), strings (column by name) or is a callable. Raises a ValueError if that is not the case. Parameters ---------- usecols : list-like, callable, or None List of columns to use when parsing or a callable that can be used to filter a list of table columns. Returns ------- usecols_tuple : tuple A tuple of (verified_usecols, usecols_dtype). 'verified_usecols' is either a set if an array-like is passed in or 'usecols' if a callable or None is passed in. 'usecols_dtype` is the inferred dtype of 'usecols' if an array-like is passed in or None if a callable or None is passed in. z['usecols' must either be list-like of all strings, all unicode, all integers or a callable.NF)skipnaemptyintegerstring)r r r )rr#r>libZ infer_dtyperF)r}rA usecols_dtyperBrBrC_validate_usecols_arg=srcCsBd}|dk r>t|r(tj|s>t|nt|ttfs>t||S)z Check whether or not the 'parse_dates' parameter is a non-boolean scalar. Raises a ValueError if that is the case. zSOnly booleans, lists, and dictionaries are accepted for the 'parse_dates' parameterN)r%r Zis_boolrrGrr)rRrArBrBrC_validate_parse_dates_argos  rc@seZdZddZeeddddZddZed d Z d d Z d%ddZ ddZ d&ddZ d'ddZd ZddZddZd(ddZd)ddZd*dd Zd!d"Zd#d$ZdS)+ ParserBasecCs@|jd|_d|_|jdd|_|jdd|_t|_d|_d|_ t |jdd|_ |jdd|_ |jdd|_ |jdd|_|jd |_|jd |_|jd d|_|jd d |_|jd|_|jd|_|jdd |_|jdd|_|jdd |_t|j |j |j|jd|_|jd|_t|jtttjfrt t!t"|jsJt#dt$dd|jDrht#d|jdr|t#d|jdrt#d|jdk r*t|jtttjf}|rt t!t"|jpt"|js*t#dnL|jdk r*|jdk rt#dn*t"|jst#dn|jdkr*t#dd|_%d |_&g|_'dS) NrIrnrmrRFrQr|r{rqrrrrTrsrtrrrw)rQr|rrwrlz*header must be integer or list of integerscss|]}|dkVqdS)rNrB)rrrBrBrCrsz&ParserBase.__init__..z8cannot specify multi-index header with negative integersr}z;cannot specify usecols when specifying a multi-index headerz9cannot specify names when specifying a multi-index headerzLindex_col must only contain row numbers when specifying a multi-index headerz;Argument prefix must be None if argument header is not NonerzUPassing negative integer to header is invalid. For no header, use header=None instead)(rWrI orig_namesrrnrmrF unnamed_cols index_names col_namesrrRrQr|r{rqrrrrrsrtrrrw_make_date_converter _date_convrlrGrrrrrmapr!r>any_name_processed _first_chunkhandles)rr_Z is_sequencerBrBrCrsr                zParserBase.__init__N)rreturncsxt|jrtj|jj}n(t|jr@tjjdd|jD}ng}djtfdd|D}|rtt d|ddS) ao Check if parse_dates are in columns. If user has provided names for parse_dates, check if those columns are available. Parameters ---------- columns : list List of names of the dataframe. Raises ------ ValueError If column to parse_date is not in dataframe. css |]}t|r|n|gVqdS)N)r#)rrrBrBrCrsz.z, cs"h|]}t|tr|kr|qSrB)rGr)rr)rrBrCrsz.z+Missing column provided to 'parse_dates': 'r:N) rrR itertoolschainrr# from_iterablersortedr>)rrZ cols_neededZ missing_colsrB)rrC_validate_parse_dates_presences    z)ParserBase._validate_parse_dates_presencecCsx|jD] }|jqWdS)N)rr^)rrrBrBrCr^ s zParserBase.closecCs6t|jtp4t|jto4t|jdko4t|jdtS)Nr)rGrRrrrE)rrBrBrC_has_complex_date_cols  z ParserBase._has_complex_date_colcCs|t|jtr|jS|jdk r(|j|}nd}|j|}t|jr\||jkpZ|dk oZ||jkS||jkpv|dk ov||jkSdS)N)rGrRr[rrmr%)rrr?jrBrBrC_should_parse_datess       zParserBase._should_parse_datesFc s>t|dkr|d|||fSj}|dkr.g}t|tttjfsF|g}t||jd}t |jj \}}}t|dfddtt fdd|D}||}xVt t|dD]Bt fd d|Drd jd djD}td |d qWt|r fdd|D}ndgt|}d}||||fS)z extract and return the names, index_names, col_names header is a list-of-lists returned from the parsers rrNrUcstfddtDS)Nc3s|]}|kr|VqdS)NrB)rr)rsicrBrCrKszMParserBase._extract_multi_indexer_columns..extract..)rr)r%) field_countr&)r%rCextractJsz:ParserBase._extract_multi_indexer_columns..extractc3s|]}|VqdS)NrB)rr%)r(rBrCrMsz.c3s |]}t|jkVqdS)N)rr)rr)nrrBrCrSsrcss|]}t|VqdS)N)r)rxrBrBrCrTszPassed header=[z3] are too many rows for this multi_index of columnscs2g|]*}|ddk r*|djkr*|dndqS)rN)r)rr%)rrBrCr]sz=ParserBase._extract_multi_indexer_columns..T)rErmrGrrrrrFr_clean_index_namesrziprrrrlr) rrlrr passed_namesicrIrmrrB)r(r'r)rr&rC_extract_multi_indexer_columns,s4      z)ParserBase._extract_multi_indexer_columnscCs|jrt|}tt}t||j}xt|D]z\}}||}xT|dkr|d||<|rx|dd|dd|f}n|d|}||}q>W|||<|d||<q,W|S)NrrUrdr+r+)rrrr=rrmr)rrIcountsZis_potential_mirr cur_countrBrBrC_maybe_dedup_namesgs   " zParserBase._maybe_dedup_namescCst|rtj||d}|S)N)rI)rr. from_tuples)rrrrBrBrC_maybe_make_multi_index_columnssz*ParserBase._maybe_make_multi_index_columnscCst|j s|j rd}nh|js8|j||}|j|}nJ|jr|jshtt||j|j\|_ }|_d|_|j ||}|j|dd}|rt |t |}|j |d|}|j ||j}||fS)NTF)try_parse_dates)rrmr"_get_simple_index _agg_indexrr,rrr_get_complex_date_indexrEZ set_namesr5r)rraalldatar indexnamerowrrMZcoffsetrBrBrC _make_indexs"   zParserBase._make_indexcCstdd}g}g}x.|jD]$}||}|j||j||qWx.t|ddD]}|j||jsN|j|qNW|S)NcSs"t|ts|Std|ddS)NzIndex z invalid)rGrr>)rrBrBrCixs z(ParserBase._get_simple_index..ixT)reverse)rmrr r_implicit_index)rrarr= to_removeridxrrBrBrCr7s   zParserBase._get_simple_indexc srfdd}g}g}x.|jD]$}||}|j||j||qWx(t|ddD]}|j|j|qRW|S)NcsLt|tr|Sdkr&td|dx tD]\}}||kr0|Sq0WdS)Nz Must supply column order to use z as index)rGrr>r)Zicolrr)rrBrC _get_names z5ParserBase._get_complex_date_index.._get_nameT)r>)rmrr rremove) rrarrBr@rrAr?rrB)rrCr9s    z"ParserBase._get_complex_date_indexTc Csg}xt|D]\}}|r.|j|r.|j|}|jrB|j}|j}n t}t}t|jtr|j |}|dk rt ||j|j|j \}}|j |||B\}} |j |qW|j } t|| }|S)N)rr$rrrqrrFrGrr_get_na_valuesrr _infer_typesrr0) rrr6arraysrZarr col_na_valuescol_na_fvaluescol_namerMrIrBrBrCr8s&    zParserBase._agg_indexcCsi}x|jD]\}} |dkr&dn |j|d} t|trJ|j|d} n|} |jrjt||||j\} } ntt} } | dk r | dk rtj d|dt ddyt j | | } Wn:t k rtj| t|jtj}t j| | |} YnX|j| t| | Bdd\}}nt| pt| }| o&| }|j| t| | B|\}}| rt||  sbt| ry2t| rt|  r|dkrt d|Wnttfk rYnX|j|| |}|||<|r|rtd |d |qW|S) Nz5Both a converter and dtype were specified for column z" - only the converter will be used)rF) try_num_boolrz$Bool column has NA values in column zFilled z NA values in column )rrWrGrrrDrrrFrrrr Z map_inferr>r*isinrviewrZuint8Zmap_infer_maskrEr&rrrrrr _cast_typesprint)rdctrqrr~ruZdtypesrrrZconv_f cast_typerGrHmaskZcvalsna_countZis_str_or_ea_dtyperKrBrBrC_convert_to_ndarrayssX        zParserBase._convert_to_ndarraysc Csd}t|jjtjtjfrftj|t|}|j }|dkr^t |rN|j tj }tj ||tj||fS|rt|jrytj||d}Wn*ttfk r|}tj||d}YqXt|j }n|}|jtjkrtj||d}|jtjko|r tjtj||j|jd}||fS)aU Infer types of values, possibly casting Parameters ---------- values : ndarray na_values : set try_num_bool : bool, default try try to cast values to numeric (first preference) or boolean Returns ------- converted : ndarray na_count : int rF)rsrt) issubclassrvrrnumberZbool_r*rLrsumr"ZastypeZfloat64Zputmasknanr$r Zmaybe_convert_numericr>rparsersZsanitize_objectsr)Zobject_libopsZmaybe_convert_boolZasarrayrsrt)rrrqrKrSrRrrBrBrCrE?s2   zParserBase._infer_typescCst|rbt|to|jdk }t| r6| r6t|t}t|jj }t j ||j |||j d}nt|rt|}|j}y|j||dStk r}ztd|d|WYdd}~XnXnPyt||ddd}Wn:tk r}ztd|d ||WYdd}~XnX|S) aF Cast values to specified type Parameters ---------- values : ndarray cast_type : string or np.dtype dtype to cast values to column : string column name - used only for error reporting Returns ------- converted : ndarray N)rs)rvzExtension Array: zO must implement _from_sequence_of_strings in order to be used in parser methodsT)rrzUnable to convert column z to type )rrGr( categoriesr$rrr-uniqueZdropnar+Z_from_inferred_categoriesZ get_indexerrsrr'Zconstruct_array_typeZ_from_sequence_of_stringsNotImplementedErrorr>)rrrQcolumnZ known_catsZcatsZ array_typerrBrBrCrNrs0    zParserBase._cast_typesc Cs6|jdk r.t||j|j|j|j||jd\}}||fS)N)r{)rR_process_date_conversionrrmrr{)rrIrarBrBrC_do_date_conversionss zParserBase._do_date_conversions)F)N)F)T)FNN)T)rrrrr rr!r^propertyr"r$r0r3r5r<r?r7r9r8rTrErNr`rBrBrBrCrs"W0  :    J 37rc@sTeZdZdZddZddZddZdd Zdd d Zd dZ ddZ dddZ d S)rz c s|_|j}tj||jd}|jddkr|rt|trVt|d}jj |t |drzt |d rzt ||dd}d|d<j dk |d <t |d \__j|d <tj|f|_jj_jdk}jjdkrd_nLtjjd kr jjjjj|\___}ntjjd _jdkrvjrdfd dtjjD_nttjj_jdd_jrtjjjdkrt j!j rt"jtjtkrfddt#jD_tjtkrt"jj$jj%j_j&sjj'd krt(j rd_)t*jj j\}__ jdkr|_jjdkr| rdgtj_jj'd k_+dS)NrLrOrbr]r)rLnewlinezutf-8FZallow_leading_colsr}rUrcsg|]}j|qSrB)rn)rr)rrBrCrsz+CParserWrapper.__init__..r cs$g|]\}}|ks|kr|qSrBrB)rrr))r}rBrCr sT),r_rrrrWrGropenrrrrrmrr}r rYZ TextReader_readerrrIrlrEr0rrrrnrZ table_widthrrrFissubsetrrr!_set_noconvert_columnsr" leading_colsrrr,r?)rsrcr_rLr.rrB)rr}rCrsf         $        zCParserWrapper.__init__c Cs@x|jD] }|jqWy|jjWntk r:YnXdS)N)rr^rer>)rrrBrBrCr^)s   zCParserWrapper.closecs<jjdkr$tjjn(tjs8jdkrHjddndfdd}tjtrxΈjD].}t|trx|D] }||qWqp||qpWntjt rxjj D].}t|trx|D] }||qWq||qWnHjr8tj tr"x0j D]}||qWnj dk r8|j dS)z Set the columns that should not undergo dtype conversions. Currently, any column that is involved with date parsing will not undergo such conversions. r r Ncs:dk rt|r|}t|s*j|}jj|dS)N)r!rreZ set_noconvert)r*)rIrr}rBrC_setHs  z3CParserWrapper._set_noconvert_columns.._set)r N) rr rr}sortrrIrGrRrrrm)rrjr@krB)rIrr}rCrg3s4            z%CParserWrapper._set_noconvert_columnscCs|jjt|dS)N)reset_error_bad_linesr=)rstatusrBrBrCrmhsz"CParserWrapper.set_error_bad_linesNc sy|jj|}Wntk r|jrd|_|j|j}t||j|j|j j dd\}}|j |j |j dk r||jttfdd|j}||fSYnXd|_|j}|jjr|jrtdg}xTt|jjD]D}|jdkr|j|}n|j|j|}|j||dd}|j|qWt|}|j dk rD|j|}|j|}t|j}d d t||D}|j||\}}nzt|j}t|j}|j|}|j dk r|j|}d d |D} d d t||D}|j||\}}|j|| |\}}|j ||j }|||fS)NFrv)rvcs |dkS)NrrB)item)rrBrC~sz%CParserWrapper.read..z file structure not yet supportedT)r6cSsi|]\}\}}||qSrBrB)rrlrvrBrBrC sz'CParserWrapper.read..cSsg|] }|dqS)rUrB)rr*rBrBrCrsz'CParserWrapper.read..cSsi|]\}\}}||qSrBrB)rrlrrqrBrBrCrrs) rer]rrr3r_get_empty_metarmrr_rWr5rr}_filter_usecolsrfilterrrIrhr"r]rr_maybe_parse_datesrr0r r-r`rr<) rrVrarIrrrFrrr:rB)rrCr]ks`                zCParserWrapper.readcs>t|j|dk r:t|tkr:fddt|D}|S)Ncs$g|]\}}|ks|kr|qSrBrB)rrr?)r}rBrCrsz2CParserWrapper._filter_usecols..)rr}rEr)rrIrB)r}rCrts zCParserWrapper._filter_usecolscCsJt|jjd}d}|jjdkrB|jdk rBt||j|j\}}|_||fS)Nr)rrerlrhrmr,r)rrIZ idx_namesrBrBrC_get_index_namess zCParserWrapper._get_index_namesTcCs|r|j|r|j|}|S)N)r$r)rrrr6rBrBrCrvs z!CParserWrapper._maybe_parse_dates)N)T) rrrrrr^rgrmr]rtrwrvrBrBrBrCrsj 5 U  rcOsd|d<t||S)a6 Converts lists of lists/tuples into DataFrames with proper type inference and optional (e.g. string to datetime) conversion. Also enables iterating lazily over chunks of large files Parameters ---------- data : file-like object or list delimiter : separator character to use dialect : str or csv.Dialect instance, optional Ignored if delimiter is longer than 1 character names : sequence, default header : int, default 0 Row to use to parse column labels. Defaults to the first row. Prior rows will be discarded index_col : int or list, optional Column or columns to use as the (possibly hierarchical) index has_index_names: bool, default False True if the cols defined in index_col have an index name and are not in the header. na_values : scalar, str, list-like, or dict, optional Additional strings to recognize as NA/NaN. keep_default_na : bool, default True thousands : str, optional Thousands separator comment : str, optional Comment out remainder of line parse_dates : bool, default False keep_date_col : bool, default False date_parser : function, optional skiprows : list of integers Row numbers to skip skipfooter : int Number of line at bottom of file to skip converters : dict, optional Dict of functions for converting values in certain columns. Keys can either be integers or column labels, values are functions that take one input argument, the cell (not column) content, and return the transformed content. encoding : str, optional Encoding to use for UTF when reading/writing (ex. 'utf-8') squeeze : bool, default False returns Series if only one column. infer_datetime_format: bool, default False If True and `parse_dates` is True for a column, try to infer the datetime format based on the first datetime string. If the format can be inferred, there often will be a large parsing speed-up. float_precision : str, optional Specifies which converter the C engine should use for floating-point values. The options are None for the ordinary converter, 'high' for the high-precision converter, and 'round_trip' for the round-trip converter. rr)r\)argsr_rBrBrC TextParsers6rycCstdd|DS)Ncss"|]}|dks|dkrdVqdS)rNrUrB)rrqrBrBrCr sz#count_empty_vals..)rW)valsrBrBrCcount_empty_vals sr{c@seZdZddZddZddZd3dd Zd d Zd4d d ZddZ ddZ ddZ ddZ ddZ ddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,Zd-d.Zd/d0Zd5d1d2ZdS)6rc stj|d_g_d_d_|d_|d_|d_|d_ t j r`j _ nfdd_ t |d _ |d _|d _tjtrtj_|d _|d _|d_|d_|d_t|d\_}|d_|d_|d_|dpd_d_d|kr4|d_|d_|d_|d_ |d_!|d_"|d_#g_$t%|djjjd\}}j&j'|t(|d rj)|n|_d_*yj+\_,_-_.Wn$t/t0fk rj1YnXt2j,d!kr@j3j,j4j5\_,_4_5}t2j,_-n j,d_,t6j,_7j8sj9j,\}_7_,d"_:j4dkr|_4j;j,j<rj=_>nd_>t2j"d!krt0d#j!dkrt?j@d$j"d%_Ant?j@d$j!d&j"d%_AdS)'zN Workhorse function for processing nested list into DataFrame NrrLrOrrocs |jkS)N)ro)r*)rrBrCrp, sz'PythonParser.__init__..rprergrfrirjrkrhr}rrrrIFrr~rurvrxrzryr%)rLrOrreadlinerUTz'Only length-1 decimal markers supportedz[^-^0-9^z]+^)Brrrabufposline_posrLrOrrorskipfuncrrprergrGrrfrirjrkrhrr}rrrZ names_passedrr~rurvrxrzryZ_comment_linesr4rextendr _make_reader _col_indices_infer_columnsrnum_original_columnsrrr>r^rEr0rrrrr"_get_index_namerr!rR_set_no_thousands_columns_no_thousands_columnsrXcompilenonnum)rrr_rMrrrB)rrCr s                                    zPythonParser.__init__cstfdd}tjtr\xƈjD].}t|trNx|D] }||q._set)rFrGrRrrrrm)rrjr@rlrB)rrrCr s*           z&PythonParser._set_no_thousands_columnsc s:jdkstdkrjr*tdGfdddtj}|}dk rT|_nj}j|ggd}x>jj s| rj d7_ j}j|ggd}qpW|d}j d7_ j d7_ tj j |}|j|_tj t||d}jjt|tj |dd}nfd d } | }|_dS) NrUz.MyDialect N) rrrrergrfrirjrhrkrB)rrBrC MyDialect srr)rT)rstrictc3sDj}tj}|j|jVxD]}|j|jVq(WdS)N)r|rXrsplitstrip)linepat)rrrBrCrb s   z(PythonParser._make_reader.._read)rerErkr>rDialectr|_check_commentsrrrSniffersniffreaderrr~rrra) rrrZdiarlinessniffedZline_rdrrrbrB)rrrrCr s4  zPythonParser._make_readerNc Csy|j|}Wn"tk r0|jr*g}nYnXd|_t|j}t|s|j|j}t||j|j |j \}}}|j ||j }|||fSt |d}d}|jr|t|kr|d}|dd}|j|} |j| } |j|j}|j|| \}} |j| } |j| | ||\}}||| fS)NFrrU) _get_linesrrrrrEr3rsrmrrvr5rr{r _rows_to_cols_exclude_implicit_indexrr` _convert_datar<) rrowscontentrrIrrZcount_empty_content_valsr;r:rarBrBrCr] s4         zPythonParser.readcCsz|j|j}|jrb|j}i}d}xTt|D]2\}}x|||krJ|d7}q4W|||||<q*Wnddt||D}|S)NrrUcSsi|]\}}||qSrBrB)rrlrqrBrBrCrr1 sz8PythonParser._exclude_implicit_index..)r3rr?rmrr-)rr:rIZ excl_indicesraoffsetrrrBrBrCr$ s  z$PythonParser._exclude_implicit_indexcCs|dkr|j}|j|dS)N)r)rTr])rrrBrBrCr6 szPythonParser.get_chunkc sfdd}|j}tjts*j}n |j}i}i}tjtrx^jD]F}j|}j|} t|tr|jkrj|}|||<| ||<qPWn j}j}j|||j ||S)NcsDi}x:|jD].\}}t|tr4|jkr4j|}|||<qW|S)zconverts col numbers to names)rrGr=r)mappingcleanrrq)rrBrC_clean_mapping= s   z2PythonParser._convert_data.._clean_mapping) rurGrvrrqrr=rrTr~) rrarZ clean_convZ clean_dtypesZclean_na_valuesZclean_na_fvaluesrZna_valueZ na_fvaluerB)rrCr; s0        zPythonParser._convert_datacsj}d}d}t}jdk rj}t|tttjfr`t|dk}|rjt||ddg}n d}|g}g}x|t |D]n\}} y$j } xj | krj } qWWnt k rR} zj | krtd| dj dd| |o| dkr"|rj|jdgt|d|||fSjs4td| jdd} WYdd} ~ XnXgg} xbt | D]V\} }|d kr|rd | d |}n d | }| j| j|n j|qfW| rBjrBtt}xt D]Z\} }||}x2|dkr$|d||<|d |}||}qW|| <|d||<qWnr|r| |dkrt}jdk rttjnd}t| }||kr|||krd}dg|jdg_|j|jfd d| Dt|dkrzt}qzW|rj|dk rjdk r&t|tjksHjdkrPt|t|dkrPtdt|dkrftdjdk rj||nd_t|}|g}nj||d}ny j } Wn@t k r} z"|std| |dd} WYdd} ~ XnXt| }|}|sLjr,fddt|Dg}ntt|g}j||d}ntjdksft||kr~j|g|}t|}nBtj rt|tjkrtdj|g||g}|}|||fS)NrTrUFzPassed header=z but only z lines in filezNo columns to parse from filerz Unnamed: Z_level_rdcsh|] }|qSrBrB)rr) this_columnsrBrCr sz.PythonParser._infer_columns..zHNumber of passed names did not match number of header fields in the filez*Cannot pass names with multi-index columnscsg|]}j|qSrB)rn)rr)rrBrCr sz/PythonParser._infer_columns..r+r+r+r+)rIrFrlrGrrrrrEr_buffered_liner _next_linerr> _clear_bufferrrrrr=rmr~rr}r_handle_usecolsrrnrr)rrIrZ clear_bufferrrlZhave_mi_columnsrlevelhrrrZthis_unnamed_colsrrrIr1rr2lcr/Z unnamed_countZncolsrB)rrrCrh s                   "    "zPythonParser._infer_columnsc s|jdk rt|jr"t|j|ntdd|jDrt|dkrJtdgxb|jD]P}t|tryj|j |Wqtk rt |j|YqXqVj|qVWn|jfdd|D}|_ |S)zb Sets self._col_indices usecols_key is used if there are string usecols. Ncss|]}t|tVqdS)N)rGr)rurBrBrCr sz/PythonParser._handle_usecols..rUz4If using multiple headers, usecols must be integers.cs"g|]}fddt|DqS)csg|]\}}|kr|qSrBrB)rrr)) col_indicesrBrCr sz;PythonParser._handle_usecols...)r)rr^)rrBrCr sz0PythonParser._handle_usecols..) r}rrrrEr>rGrrrrr)rrZ usecols_keyrrB)rrCr s(      zPythonParser._handle_usecolscCs$t|jdkr|jdS|jSdS)zH Return a line from buffer, filling buffer if required. rN)rEr~r)rrBrBrCr& s zPythonParser._buffered_linecCs|s|St|dts|S|ds&|S|dd}|tkr>|S|d}t|dkr|d|jkrd}|d}|ddj|d}|||}t||dkr|||dd7}|g|ddSt|dkr|ddgSdgSdS)a- Checks whether the file begins with the BOM character. If it does, remove it. In addition, if there is quoting in the field subsequent to the BOM, remove it as well because it technically takes place at the beginning of the name, not the middle of it. rrUrNr)rGr_BOMrErgr)rZ first_rowZ first_eltZ first_row_bomstartquoteendnew_rowrBrBrC_check_for_bom/ s*    zPythonParser._check_for_bomcCs| ptdd|DS)z Check if a line is empty or not. Parameters ---------- line : str, array-like The line of data to check. Returns ------- boolean : Whether or not the line is empty. css|] }| VqdS)NrB)rr*rBrBrCrq sz.PythonParser._is_line_empty..)r)rrrBrBrC_is_line_emptyd s zPythonParser._is_line_emptyc Cst|jtrx|j|jr*|jd7_qWxyp|j|j|jgd}|jd7_|j r||j|j|jdsx|r|Pn |jr|j|g}|r|d}PWq.t k rt Yq.Xq.Wnx(|j|jr|jd7_t |jqWxt|j |jdd}|jd7_|dk r|j|gd}|jrH|j|g}|rZ|d}Pq|j|sX|rPqW|jdkrt|j |}|jd7_|jj||S)NrUr)row_num)rGrarrrrrr_remove_empty_lines IndexErrorrr_next_iter_linerrr~r)rrrZ orig_linerBrBrCrs sJ      zPythonParser._next_linecCs:|jrt|n&|jr6d|d}tjj||ddS)a Alert a user about a malformed row. If `self.error_bad_lines` is True, the alert will be `ParserError`. If `self.warn_bad_lines` is True, the alert will be printed out. Parameters ---------- msg : The error message to display. row_num : The row number where the parsing error occurred. Because this row number is displayed, we 1-index, even though we 0-index internally. zSkipping line z: rN)rrrrstderrwrite)rrArbaserBrBrC_alert_malformed s   zPythonParser._alert_malformedcCsy t|jStjk rz}zR|js*|jrlt|}d|ksBd|krFd}|jdkr`d}|d|7}|j||dSd}~XnXdS)aL Wrapper around iterating through `self.data` (CSV source). When a CSV error is raised, we check for specific error messages that allow us to customize the error message displayed to the user. Parameters ---------- row_num : The row number of the line being parsed. z NULL bytezline contains NULzNULL byte detected. This byte cannot be processed in Python's native csv library at the moment, so please pass in engine='c' insteadrzError could possibly be due to parsing errors in the skipped footer rows (the skipfooter keyword is only applied after Python's csv library has parsed all rows).z. N) rrarErrorrrrrpr)rrerAreasonrBrBrCr s      zPythonParser._next_iter_linecCs|jdkr|Sg}xv|D]n}g}xZ|D]R}t|t s@|j|krL|j|q&|d|j|j}t|dkrv|j|Pq&W|j|qW|S)Nr)ryrGrrfindrE)rrrlrlr*rBrBrCr s      zPythonParser._check_commentscCsTg}xJ|D]B}t|dksBt|dkr t|dt sB|djr |j|q W|S)a} Iterate through the lines and remove any that are either empty or contain only one whitespace value Parameters ---------- lines : array-like The array of lines that we are to filter. Returns ------- filtered_lines : array-like The same array of lines with the "empty" ones removed. rUr)rErGrrr)rrrrrBrBrCr s   z PythonParser._remove_empty_linescCs |jdkr|S|j||jddS)Nr)rsearchreplace)rx_search_replace_num_columns)rrrBrBrC_check_thousands s zPythonParser._check_thousandsc Csg}x|D]z}g}xft|D]Z\}}t|t sX||ksX|jrH||jksX|jj|jrd|j|q|j|j||qW|j|q W|S)N) rrGrrrrrrr) rrrrrrrrr*rBrBrCr s   z(PythonParser._search_replace_num_columnscCs$|jtdkr|S|j||jddS)Nrzrd)rrr)rzrr)rrrBrBrC_check_decimal& szPythonParser._check_decimalcCs g|_dS)N)r~)rrBrBrCr. szPythonParser._clear_bufferFc CsLt|}t|}y |j}Wntk r4d}YnXy |j}Wntk rZd}YnXd}|dk r|jdk rt||j}|dk rt|t||jkrttt||_|jdd|_xt|D]}|j d|qWt|}t||_|||fS|dkr*d|_ |jdkr$tt||_d}nt ||j|j \}}|_|||fS)a Try several cases to get lines: 0) There are headers on row 0 and row 1 and their total summed lengths equals the length of the next line. Treat row 0 as columns and row 1 as indices 1) Look for implicit index: there are more columns on row 1 than row 0. If this is true, assume that row 1 lists index columns and row 0 lists normal columns. 2) Get index from the columns if it was listed. NrFrUT) rrrrmrErrr~reversedinsertr?r,r) rrrrZ next_lineZimplicit_first_colsrZ index_nameZcolumns_rBrBrCr3 s>          zPythonParser._get_index_namecsj}jr|tj7}tdd|D}||koFjdk oFjdkrFjrVjnd}g}t|}t|}g}x`|D]X\}} t| } | |krƈjsj rЈj |||} |j | | fjrPqx|j | qxWxp|D]h\} } d|d| dd| } j r2tj dkr2j tjkr2d } | d | 7} j| | dqWttj||d j}jrjrfd d t|D}nfdd t|D}|S)Ncss|]}t|VqdS)N)rE)rrowrBrBrCry sz-PythonParser._rows_to_cols..Frz Expected z fields in line rUz, saw zXError could possibly be due to quotes being ignored when a multi-char delimiter is used.z. )Z min_widthcs6g|].\}}|tjks.|tjjkr|qSrB)rErmr)rra)rrBrCr sz.PythonParser._rows_to_cols..csg|]\}}|jkr|qSrB)r)rrr)rrBrCr s)rr?rErmmaxr}rprrrrrrerhr QUOTE_NONErrr Zto_object_arrayT)rrZcol_lenmax_lenZfootersZ bad_lines iter_contentZ content_lenrrZ actual_lenrrArZzipped_contentrB)rrCrs sD   zPythonParser._rows_to_colsc s"j}d}|dk rPtj|krBjd|j|d}_n|tj8}|dkrtjtrjtjkrzt|dkrjjd}tj}n jjj|}j|}jrڇfddt|D}|j ||_ng}y||dk r,x"t |D]}|j t jqW|j |n>d}x8j j|dd}|d7}|dk r2|j |q2WWnNtk rjrfddt|D}|j |t|dkrYnXjt|7_g_n|}jr|dj }j|}jrj|}j|}j|S)Ncs$g|]\}}j|js|qSrB)rr)rrr)rrBrCr sz+PythonParser._get_lines..rrU)rcs$g|]\}}j|js|qSrB)rr)rrr)rrBrCr s)r~rErGrarrrrorrrrrrrprrrrr)rrrrnew_posrMrrB)rrCr sb"                zPythonParser._get_lines)N)N)N)rrrrrrr]rrrrrrrrrrrrrrrrrr?rrrrBrBrBrCr s6$? ( -" 54'@Grcsfdd}|S)Ncsdkr\tj|}ytjt|dddjStk rXtjtj|ddSXny,tj|dd}t|t j rt d|St k ry tjtjtj|dddSt k rt f|SXYnXdS) Nignore)utcr|errorsrcache)r|)r)rrz scalar parser)r`r|)r) rZconcat_date_colstools to_datetimerZto_numpyr>r6rGdatetime Exceptionr7) date_colsstrsr)rwrQr|rrBrC converter s:   z'_make_date_converter..converterrB)rQr|rrwrrB)rwrQr|rrCr s'rcsfdd}g}i} |} t|}t} |dks:t|trB||fSt|trx|D]} t| rt| trx| |krx| | } || rqR||| || <qRt|| || \} }}| |krtd| || | <|j| | j |qRWnlt|t rLx^|j D]R\} } | |krtd| dt|| || \}}}|| | <|j| | j |qW|j | |j ||sx&t| D]}|j ||j|qpW||fS)Ncs$ttr|kp"tto"|kS)N)rGr)colspec)rmrrBrC_isindex? sz*_process_date_conversion.._isindexz New date column already in dict z Date column z already in dict)rrFrGr[r%r=_try_convert_datesr>rrrrrrrC) data_dictrZ parse_specrmrrr{rZnew_colsZnew_datarrrnew_namerZ old_namesrMrrB)rmrrCr_6 sN          r_c st|}g}xL|D]D}||kr*|j|qt|trL||krL|j||q|j|qWdjdd|D}fdd|D}||} || |fS)NrMcss|]}t|VqdS)N)r)rr*rBrBrCr sz%_try_convert_dates..csg|]}|kr|qSrBrB)rr)rrBrCr sz&_try_convert_dates..)rFrrGr=r) r`rrrcolsetcolnamesrrZto_parseZnew_colrB)rrCr{ s  rcCs|dkr |rt}nt}t}nt|tr|j}i}x:|jD].\}}t|sV|g}|rft|tB}|||<q@Wdd|jD}n*t|s|g}t|}|r|tB}t|}||fS)NcSsi|]\}}t||qSrB)_floatify_na_values)rrlrqrBrBrCrr sz$_clean_na_values..) rrFrGrrrr#_stringify_na_valuesr)rqrrrZ old_na_valuesrlrqrBrBrCr s,   rc Cst|sd||fSt|}t|}g}t|}xxt|D]l\}}t|tr|j|xNt|D]$\}}||kr^|||<|j|Pq^Wq8||}|j||j|q8Wx.t|D]"\}}t|tr||krd||<qW|||fS)N)rrrrGrrrC) rrmrZcp_colsrrrr#r?rBrBrCr, s*      r,c st|}tts,pttfddnFj}tddx0|jD]$\}}t|rb||n|}||<qJW|dks|dks|dkrtg}nJfdd|D} t | |d}|j x"t |D]\} } |j | | qWfdd |D} ||| fS) NcsS)NrBrB) default_dtyperBrCrp sz!_get_empty_meta..cSstS)N)objectrBrBrBrCrp sFcsg|]}tg|dqS))rv)r1)rr?)rvrBrCr sz#_get_empty_meta..)rIcsi|]}tg|d|qS))rv)r1)rrI)rvrBrCrr sz#_get_empty_meta..) rrGrrrrrr!r-r0rkrr) rrmrrvZ_dtyperlrqrrrarr)rrB)rrvrCrs s$     rscCsTt}xH|D]@}y t|}tj|s.|j|Wq tttfk rJYq Xq W|S)N)rFfloatrisnanrrr> OverflowError)rqrrqrBrBrCrs   rcCsg}x|D]}|jt||j|yHt|}|t|krbt|}|j|d|jt||j|Wntttfk rYnXy|jt|Wq tttfk rYq Xq Wt|S)z3 return a stringified and numeric for these values z.0)rrrr=rr>rrF)rqrr*rqrBrBrCr s$    rcCsJt|tr>||kr"||||fS|r0ttfSttfSn||fSdS)a Get the NaN values for a given column. Parameters ---------- col : str The name of the column. na_values : array-like, dict The object listing the NaN values as strings. na_fvalues : array-like, dict The object listing the NaN values as floats. keep_default_na : bool If `na_values` is a dict, and the column is not mapped in the dictionary, whether to return the default NaN values or the empty set. Returns ------- nan_tuple : A length-two tuple composed of 1) na_values : the string NaN values for that column. 2) na_fvalues : the float NaN values for that column. N)rGrrrF)rrqrrrrBrBrCrD&s  rDcCsJt|}g}x8|D]0}||kr*|j|qt|tr|j||qW|S)N)rFrrGr=)rrrrrrBrBrC_get_col_namesIs   rc@s6eZdZdZd ddZd ddZddd Zd d ZdS)FixedWidthReaderz( A reader of fixed-width lines. NrcCs||_d|_|rd|nd|_||_|dkr>|j||d|_n||_t|jttfsht dt |j xd|jD]Z}t|ttfot |dkot|dt tjt dfot|dt tjt dfspt d qpWdS) Nz z rP)rroz;column specifications must be a list or tuple, input was a rrrUzEEach column specification must be 2 element tuple or list of integers)rbufferrerydetect_colspecsrrGrrrrrrEr=rr )rrrreryrorrrBrBrCrYs$  zFixedWidthReader.__init__cCsf|dkrt}g}g}x@t|jD]2\}}||kr<|j||j|t||kr"Pq"Wt||_|S)a Read rows from self.f, skipping as specified. We distinguish buffer_rows (the first <= infer_nrows lines) from the rows returned to detect_colspecs because it's simpler to leave the other locations with skiprows logic alone than to modify them to deal with the fact we skipped some rows here as well. Parameters ---------- infer_nrows : int Number of rows to read from self.f, not counting rows that are skipped. skiprows: set, optional Indices of rows to skip. Returns ------- detect_rows : list of str A list containing the rows to read. N)rFrrrrErr)rrroZ buffer_rowsZ detect_rowsrrrBrBrCget_rowsws    zFixedWidthReader.get_rowsc sdjddjD}tjd|d}j||}|s@tdttt|}t j |dt d}j dk r|fd d |D}x4|D],}x&|j |D]} d|| j| j<qWqWt j|d} d | d <t j|| Adkd } tt| ddd | ddd } | S) Nrcss|]}d|VqdS)\NrB)rr*rBrBrCrsz3FixedWidthReader.detect_colspecs..z([^z]+)z(No rows from which to infer column widthrU)rvcsg|]}|jjdqS)r) partitionry)rr)rrBrCrsz4FixedWidthReader.detect_colspecs..rr)rrerXrrrrrrErZzerosr=ryfinditerrrZrollwhererr-) rrro delimiterspatternrrrRrmZshiftededgesZ edge_pairsrB)rrCrs"    "z FixedWidthReader.detect_colspecsc s`jdk r@ytjWqJtk r<d_tjYqJXn tjfddjDS)Ncs$g|]\}}||jjqSrB)rre)rZfrommZto)rrrBrCrsz-FixedWidthReader.__next__..)rrrrr)rrB)rrrCrs  zFixedWidthReader.__next__)Nr)N)rN)rrrrrrrrrBrBrBrCrTs   & rc@s eZdZdZddZddZdS)rzl Specialization that Converts fixed-width fields into DataFrames. See PythonParser for details. cKs,|jd|_|jd|_tj||f|dS)Nrr)rrrrr)rrr_rBrBrCrs  zFixedWidthFieldParser.__init__cCs"t||j|j|j|j|j|_dS)N)rrreryrorra)rrrBrBrCrsz"FixedWidthFieldParser._make_readerN)rrrrrrrBrBrBrCrsr)r)rPNr)N)NFFT)F)T)N)r collectionsrrrriorrrrXrtextwraprtypingrrr r r r r rZnumpyrZpandas._libs.libZ_libsr Zpandas._libs.opsopsrZZpandas._libs.parsersrYrZpandas._libs.tslibsrZpandas._typingrrZ pandas.errorsrrrrZpandas.util._decoratorsrZpandas.core.dtypes.castrZpandas.core.dtypes.commonrrrrrrrrr r!r"r#r$r%r&r'Zpandas.core.dtypes.dtypesr(Zpandas.core.dtypes.missingr)Z pandas.corer*Zpandas.core.arraysr+Zpandas.core.framer,Zpandas.core.indexes.apir-r.r/r0Zpandas.core.seriesr1Zpandas.core.toolsr2rZpandas.io.commonr3r4r5r6Zpandas.io.date_convertersr7rrr Z_doc_read_csv_and_tablerDrJrb QUOTE_MINIMALrrrrrrrrFrformatrrrIteratorr\rr[r=rrrrrrrrryr{rrr_rrr,rsrrrDrrrrBrBrBrCs $       H        x( 4 \M  29":y 3 > %! , # j