Conf¶
-
class
astropy.time.
Conf
[source]¶ Bases:
astropy.config.ConfigNamespace
Configuration parameters for
astropy.table
.Attributes Summary
Use fast C parser for supported time strings formats, including ISO, ISOT, and YearDayTime.
Methods Summary
items
()Iterate over configuration item
(name, value)
pairs.keys
()reload
([attr])Reload a configuration item from the configuration file.
reset
([attr])Reset a configuration item to its default.
set_temp
(attr, value)Temporarily set a configuration value.
values
()Iterate over configuration item values.
Attributes Documentation
-
use_fast_parser
¶ Use fast C parser for supported time strings formats, including ISO, ISOT, and YearDayTime. Allowed values are the ‘False’ (use Python parser),’True’ (use C parser and fall through to Python parser if fails), and ‘force’ (use C parser and raise exception if it fails). Note that theoptions are all strings.
Methods Documentation
-
items
()¶ Iterate over configuration item
(name, value)
pairs.
-
keys
()¶
-
reload
(attr=None)¶ Reload a configuration item from the configuration file.
- Parameters
- attrstr, optional
The name of the configuration parameter to reload. If not provided, reload all configuration parameters.
-
reset
(attr=None)¶ Reset a configuration item to its default.
- Parameters
- attrstr, optional
The name of the configuration parameter to reload. If not provided, reset all configuration parameters.
-
set_temp
(attr, value)¶ Temporarily set a configuration value.
- Parameters
- attrstr
Configuration item name
- valueobject
The value to set temporarily.
Examples
>>> import astropy >>> with astropy.conf.set_temp('use_color', False): ... pass ... # console output will not contain color >>> # console output contains color again...
-
values
()¶ Iterate over configuration item values.
-