anthonydb / pneumatic

pneumatic is a bulk-upload library for DocumentCloud.
MIT License
23 stars 3 forks source link
documentcloud documentcloud-api python

A Bulk-Upload Library for DocumentCloud

PLEASE NOTE: This library is no longer actively maintained. I recommend using python-documentcloud <http://python-documentcloud.readthedocs.io/en/latest/>_ instead.


pneumatic is a Python 3 library that adds some luxury and safeguards to the bulk-uploading of hundreds, thousands or hundreds of thousands of files to DocumentCloud <https://www.documentcloud.org>. It is meant to do one thing -- upload -- and serve as an adjunct to, but not a replacement for, the excellent python-documentcloud <http://python-documentcloud.readthedocs.io/en/latest/> API wrapper.

pneumatic's name is inspired by the pneumatic dispatch systems in newsrooms of yore, which featured a series of pneumatic tubes_ for sending copy from the newsrooms to other departments such as the composing room.

Features

Links

Basic Usage

You will need an active DocumentCloud account and Python 3.5+. First, install via pip:

.. code-block:: python

pip install pneumatic

Example use: To upload all files in a directory (and all sub-directories below it), assign them to an existing project, set the files to public access, and tag each with metadata, run the following code:

.. code-block:: python

from pneumatic import DocumentCloudUploader

uploader = DocumentCloudUploader('person@example.com', 'your-password')
uploader.upload(
    file_directory='/govfiles',
    project='17477-loudoun-county-government',
    access='public',
    data={'type': 'government', 'action': 'lawsuit'})

Please see the full documentation_ for more examples, including how to access the uploads database.

.. _series of pneumatic tubes: https://en.wikipedia.org/wiki/Pneumatic_tube .. _full documentation: https://pneumatic.readthedocs.io/en/latest/