TapTableMeta

class astroquery.utils.tap.TapTableMeta[source]

Bases: object

TAP table metadata object

Constructor

Methods Summary

add_column(tap_column) Adds a table TAP column
get_columns() Returns the TAP table columns
get_description() Returns the TAP table description
get_name() Returns the TAP table name
get_qualified_name() Returns the qualified TAP table name.
get_schema() Returns the TAP table schema name
set_description(description) Sets the TAP table description
set_name(name) Sets the TAP table name
set_schema(schema) Sets the TAP table schema name

Methods Documentation

add_column(tap_column)[source]

Adds a table TAP column

Parameters:

tap_column : TAP Column object, mandatory

table TAP column

get_columns()[source]

Returns the TAP table columns

Returns:The TAP table columns (a list)
get_description()[source]

Returns the TAP table description

Returns:The TAP table description
get_name()[source]

Returns the TAP table name

Returns:The TAP table name
get_qualified_name()[source]

Returns the qualified TAP table name. I.e. schema+table

Returns:The the qualified TAP table name (schema+table)
get_schema()[source]

Returns the TAP table schema name

Returns:The TAP table schema name
set_description(description)[source]

Sets the TAP table description

Parameters:

description : str, mandatory

TAP table description

set_name(name)[source]

Sets the TAP table name

Parameters:

name : str, mandatory

TAP table name

set_schema(schema)[source]

Sets the TAP table schema name

Parameters:

schema : str, mandatory

TAP table schema name