"""nodoctest
This file gathers together all the tables in Sage.
* ConwayPolynomials -- database of selected Conway polynomials.
* CremonaDatabase() - Cremona's tables of elliptic curves and related data.
* Gamma0Wt2Database() -- table of arithmetic information about
newforms of weight 2 on Gamma_0(N).
* JonesDatabase() -- returns the John Jones table of number fields
with bounded ramification and degree <= 6.
* SteinWatkinsDatabase() - The Stein-Watkins tables of elliptic curves
and related data.
* Sloane's tables -- sloane_sequence, sloane_find
* SymbolicData() -- many benchmark and testing ideals
* Symbolic Data -- benchmark and test ideals
EXAMPLES:
sage: ConwayPolynomials()
Frank Luebeck's database of Conway polynomials
sage: CremonaDatabase()
Cremona's database of elliptic curves
sage: Gamma0Wt2Database()
Table of arithmetic information about newforms of weight 2 on Gamma_0(N)
sage: JonesDatabase()
John Jones's table of number fields with bounded ramification and degree <= 6
sage: SteinWatkinsDatabase()
The Stein-Watkins database of elliptic curves
sage: SymbolicData()
SymbolicData with 372 ideals
"""
from sql_db import SQLQuery, SQLDatabase
from conway import ConwayPolynomials
from cremona import CremonaDatabase
from sage.misc.misc import deprecated_callable_import
deprecated_callable_import('sage.databases.cremona', globals(), locals(),
['cremona_letter_code', 'parse_cremona_label',
'old_cremona_letter_code', 'is_optimal_id'])
del deprecated_callable_import
from jones import JonesDatabase
from stein_watkins import SteinWatkinsAllData, SteinWatkinsPrimeData
from install import database_install
from sloane import sloane_sequence, sloane_find, SloaneEncyclopedia
from symbolic_data import SymbolicData
from odlyzko import zeta_zeros
from db_modular_polynomials import \
ClassicalModularPolynomialDatabase, \
DedekindEtaModularPolynomialDatabase, \
DedekindEtaModularCorrespondenceDatabase, \
AtkinModularPolynomialDatabase, \
AtkinModularCorrespondenceDatabase
from db_class_polynomials import \
HilbertClassPolynomialDatabase
from symbolic_data import SymbolicData
from cunningham_tables import cunningham_prime_factors