You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 271B

12345678
  1. from .base import DatabaseError
  2. class Database:
  3. def __init__(self, **config):
  4. from . import companies
  5. from . import invoices
  6. self.companies = companies.Companies(db=self, **config)
  7. self.invoices = invoices.Invoices(db=self, **config)