pacifica/pacifica-python-downloader

View on GitHub
pacifica/downloader/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
Pacifica Downloader Module.

The primary exposed class is the `Downloader` class. There are two
internal classes to pull the metadata required to interact with the
Cartd service.
"""
from __future__ import absolute_import
from .downloader import Downloader  # noqa: F401

__all__ = ('Downloader')