ramp_database.model
.Keyword¶
-
class
ramp_database.model.
Keyword
(**kwargs)¶ Keyword table.
- Attributes
- idint
The ID of the table row.
- namestr
The keyword name.
- type{‘data_domain’, ‘data_science_theme’}
The type of keyword.
- categorystr
The category of the keyword.
- descriptionstr
The description of the keyword.
- problemslist of
ramp_database.model.ProblemKeyword
A back-reference to the problems associated with the keyword.
-
__init__
(**kwargs)¶ A simple constructor that allows initialization from kwargs.
Sets attributes on the constructed instance using the names and values in
kwargs
.Only keys that are present as attributes of the instance’s class are allowed. These could be, for example, any mapped columns or relationships.