pacifica/pacifica-python-uploader

View on GitHub
pacifica/uploader/bundler/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
This is the bundler library.

This module exports classes and methods for constructing and
streaming bundles of files to a designated file descriptor. The file descriptor
is opened once, and the stream is generated by a single pass over the specified
files.
"""
from .bundler import Bundler

__all__ = ['Bundler']