Testing for databases at runtime¶
-
class
sage.features.databases.DatabaseCremona(name='cremona', spkg='database_cremona_ellcurve')¶ Bases:
sage.features.StaticFileA
Featurewhich describes the presence of John Cremona’s database of elliptic curves.INPUT:
name– either'cremona'(the default) for the full large database or'cremona_mini'for the small database.
EXAMPLES:
sage: from sage.features.databases import DatabaseCremona sage: DatabaseCremona('cremona_mini').is_present() FeatureTestResult("Cremona's database of elliptic curves", True) sage: DatabaseCremona().is_present() # optional: database_cremona_ellcurve FeatureTestResult("Cremona's database of elliptic curves", True)
-
class
sage.features.databases.DatabaseJones¶ Bases:
sage.features.StaticFileA
Featurewhich describes the presence of John Jones’s tables of number fields.EXAMPLES:
sage: from sage.features.databases import DatabaseJones sage: bool(DatabaseJones().is_present()) # optional: database_jones_numfield True