FastBasic¶
-
class
astropy.io.ascii.FastBasic(default_kwargs={}, **user_kwargs)[source] [edit on github]¶ Bases:
objectThis class is intended to handle the same format addressed by the ordinary
Basicwriter, but it acts as a wrapper for underlying C code and is therefore much faster. Unlike the other ASCII readers and writers, this class is not very extensible and is restricted by optimization requirements.Attributes Summary
fill_extra_colsguessingstrict_namesMethods Summary
check_header()make_table(data, comments)Actually make the output table give the data and comments. read(table)Read input data (file-like object, filename, list of strings, or single string) into a Table and return the result. write(table, output)Use a fast Cython method to write table data to output, where output is a filename or file-like object. Attributes Documentation
-
fill_extra_cols= False¶
-
guessing= False¶
-
strict_names= False¶
Methods Documentation
-
check_header()[source] [edit on github]¶
-
make_table(data, comments)[source] [edit on github]¶ Actually make the output table give the data and comments.
-
read(table)[source] [edit on github]¶ Read input data (file-like object, filename, list of strings, or single string) into a Table and return the result.
-
write(table, output)[source] [edit on github]¶ Use a fast Cython method to write table data to output, where output is a filename or file-like object.
-