Skip to content

Welcome to ADELE

ADELE, a pithy acronym for Analytics and Data Engineering Laboratory Environment, and a reference to the mononymous British singer, is a Python package that houses ADE's suite of tools, related primarily to Data Engineering and Machine Learning.

Project layout

adele/        # Main package code
    cloud/
    data/
    database/
    loggers/
    modeling/
      liveml/
      drivers/
docs/
    index.md  # The documentation homepage.
    ...       # Other markdown pages, images and other files.
examples/
    cloud/
    data/
    database/
    loggers/
    modeling/
      liveml/
        data/
          valid/
          invalid/
      drivers/
site/
tests/
mkdocs.yml    # Mkdocs configuration file.

Mkdocs

This documentation is generated using mkdocs which relies on the Google Python Docstyle Guide. Any other documentation style is not currently supported and will not propagate into these documents.

You can serve documentation locally using the command mkdocs serve, which starts a live-reloading docs server hosted at http://localhost:8000.

Coding style

ADELE follows PEP-8 coding standards, enforced via autopep8.


Last update: 2022-02-04
Back to top