Well that depends on your setup, you can use different backends for the metadata (MySQL, Postgres, sqlite, ...). By default it's sqlite and the db is in `~/superset`.
You can also use the ORM (SQLAlchemy) to access the data programatically.
```
from superset.models import Slice
from superset import db
slices = db.session.query(Slice).all()