QueryResponseRow#

class sunpy.net.base_client.QueryResponseRow(table, index)[source]#

Bases: Row

A row subclass which knows about the client of the parent table.

Attributes Summary

response_block_map

A dictionary designed to be used to format a filename.

Methods Summary

as_table()

Return this Row as a length one Table

get(key[, default])

Extract a value from the row if the key is present otherwise return the value of default

Attributes Documentation

response_block_map#

A dictionary designed to be used to format a filename.

This takes all the columns in this Row and lower cases them and replaces spaces with underscores. Also removes any characters not allowed in Python identifiers.

Methods Documentation

as_table()[source]#

Return this Row as a length one Table

get(key, default=None)[source]#

Extract a value from the row if the key is present otherwise return the value of default