
    A>i0                       S r SSKJr  SSKJrJr  SSKJr  SSKJ	r	J
r
Jr  SSKJr  SSKJr  \	(       a  SSKJr  SS	KJr  SS
KJrJrJr  SSKJr  \" S5       " S S\S   \5      5       r\SSSSSSS.               SS jj5       r\SSSSSSS.               SS jj5       r\" S5      SSSSSSS.               SS jj5       rg)z#
Read SAS sas7bdat or xport files.
    )annotations)ABCabstractmethod)Iterator)TYPE_CHECKINGSelfoverload)
set_module)stringify_path)Hashable)TracebackType)CompressionOptionsFilePath
ReadBuffer)	DataFramezpandas.api.typingc                  h    \ rS rSrSr\S	S
S jj5       r\SS j5       rSS jr        SS jr	Sr
g)	SASReader#   z4
Abstract class for XportReader and SAS7BDATReader.
Nc                    g N )selfnrowss     V/var/www/html/land-tabula/venv/lib/python3.13/site-packages/pandas/io/sas/sasreader.pyreadSASReader.read)   s    ;>    c                    g r   r   r   s    r   closeSASReader.close,   s     r   c                    U $ r   r   r   s    r   	__enter__SASReader.__enter__/   s    r   c                $    U R                  5         g r   )r    )r   exc_type	exc_value	tracebacks       r   __exit__SASReader.__exit__2   s     	

r   r   r   )r   
int | Nonereturnr   )r,   None)r,   r   )r&   ztype[BaseException] | Noner'   zBaseException | Noner(   zTracebackType | Noner,   r-   )__name__
__module____qualname____firstlineno____doc__r   r   r    r#   r)   __static_attributes__r   r   r   r   r   #   sU     > >   , ( (	
 
r   r   r   .)formatindexencoding	chunksizeiteratorcompressionc                   g r   r   filepath_or_bufferr4   r5   r6   r7   r8   r9   s          r   read_sasr=   ;   s     r   c                   g r   r   r;   s          r   r=   r=   H   s      r   pandasNFinferc                  Uc^  Sn[        U 5      n [        U [        5      (       d  [        U5      eU R	                  5       nSU;   a  SnOSU;   a  SnO[        SU< 35      eUR	                  5       S:X  a  SS	KJn	  U	" U UUUUS
9n
O0UR	                  5       S:X  a  SSKJn  U" U UUUUS
9n
O[        S5      eU(       d  U(       a  U
$ U
   U
R                  5       sSSS5        $ ! , (       d  f       g= f)a	  
Read SAS files stored as either XPORT or SAS7BDAT format files.

Parameters
----------
filepath_or_buffer : str, path object, or file-like object
    String, path object (implementing ``os.PathLike[str]``), or file-like
    object implementing a binary ``read()`` function. 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.sas7bdat``.
format : str {{'xport', 'sas7bdat'}} or None
    If None, file format is inferred from file extension. If 'xport' or
    'sas7bdat', uses the corresponding format.
index : identifier of index column, defaults to None
    Identifier of column that should be used as index of the DataFrame.
encoding : str, default is None
    Encoding for text data.  If None, text data are stored as raw bytes.
chunksize : int
    Read file `chunksize` lines at a time, returns iterator.
iterator : bool, defaults to False
    If True, returns an iterator for reading the file incrementally.
compression : str or dict, 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', '.xz', '.zst', '.tar',
    '.tar.gz', '.tar.xz' or '.tar.bz2' (otherwise no compression).
    Set to ``None`` for no decompression.
    Can also be a dict with key ``'method'`` set to one of {``'zip'``,
    ``'gzip'``, ``'bz2'``, ``'zstd'``, ``'xz'``, ``'tar'``} and other
    key-value pairs are forwarded to ``zipfile.ZipFile``,
    ``gzip.GzipFile``, ``bz2.BZ2File``, ``zstandard.ZstdCompressor``,
    ``lzma.LZMAFile`` or ``tarfile.TarFile``, respectively.
    As an example, the following could be passed for faster compression
    and to create a reproducible gzip archive:
    ``compression={'method': 'gzip', 'compresslevel': 1, 'mtime': 1}``.

Returns
-------
DataFrame, SAS7BDATReader, or XportReader
    DataFrame if iterator=False and chunksize=None, else SAS7BDATReader
    or XportReader, file format is inferred from file extension.

See Also
--------
read_csv : Read a comma-separated values (csv) file into a DataFrame.
read_excel : Read an Excel file into a pandas DataFrame.
read_spss : Read an SPSS file into a pandas DataFrame.
read_orc : Load an ORC object into a pandas DataFrame.
read_feather : Load a feather-format object into a pandas DataFrame.

Examples
--------
>>> df = pd.read_sas("sas_data.sas7bdat")  # doctest: +SKIP
NzVIf this is a buffer object rather than a string name, you must specify a format stringz.xptxportz	.sas7bdatsas7bdatz2unable to infer format of SAS file from filename: r   )XportReader)r5   r6   r7   r9   )SAS7BDATReaderzunknown SAS format)
r   
isinstancestr
ValueErrorlowerpandas.io.sas.sas_xportrD   pandas.io.sas.sas7bdatrE   r   )r<   r4   r5   r6   r7   r8   r9   buffer_error_msgfnamerD   readerrE   s               r   r=   r=   U   s   D ~C 	 ,,>?,c22-.."((*U?FE!FDUIN 
 ||~ 7#
 
:	%9#
 -..9	{{} 
s   	C##
C1)r<   FilePath | ReadBuffer[bytes]r4   
str | Noner5   Hashable | Noner6   rP   r7   intr8   boolr9   r   r,   r   )r<   rO   r4   rP   r5   rQ   r6   rP   r7   r-   r8   rS   r9   r   r,   DataFrame | SASReader)r<   rO   r4   rP   r5   rQ   r6   rP   r7   r+   r8   rS   r9   r   r,   rT   )r2   
__future__r   abcr   r   collections.abcr   typingr   r   r	   pandas.util._decoratorsr
   pandas.io.commonr   r   typesr   pandas._typingr   r   r   r?   r   r   r=   r   r   r   <module>r]      s   # %  / +(#  !  %s  !. 
  &)	4	 	 		
 	 	 	 $	 	 
	 
  &)	 4	  	  		 
 	  	  	  $	  	  
	  H ! &-o4o o 	o
 o o o $o o or   