Metadata-Version: 1.1
Name: super-csv
Version: 0.9.2
Summary: CSV Processor
Home-page: https://github.com/edx/super-csv
Author: edX
Author-email: oscm@edx.org
License: AGPL 3.0
Description: super-csv
        =============================
        
        |pypi-badge| |travis-badge| |codecov-badge| |doc-badge| |pyversions-badge|
        |license-badge|
        
        Generic CSV Processing for Django Apps
        
        Overview
        ------------------------
        
        This library provides a `CSVProcessor <https://github.com/edx/super-csv/blob/master/super_csv/csv_processor.py>`_ class which should be subclassed to implement your own per-row processing of CSV files. At minimum, override `process_row(row)`.
        
        The mixins support optional checksums of arbitrary columns, and asynchronous processing of files using Celery.
        
        Documentation
        -------------
        
        The full documentation is at https://super-csv.readthedocs.org.
        
        License
        -------
        
        The code in this repository is licensed under the AGPL 3.0 unless
        otherwise noted.
        
        Please see ``LICENSE.txt`` for details.
        
        How To Contribute
        -----------------
        
        Contributions are very welcome.
        
        Please read `How To Contribute <https://github.com/edx/edx-platform/blob/master/CONTRIBUTING.rst>`_ for details.
        
        Even though they were written with ``edx-platform`` in mind, the guidelines
        should be followed for Open edX code in general.
        
        The pull request description template should be automatically applied if you are creating a pull request from GitHub. Otherwise you
        can find it at `PULL_REQUEST_TEMPLATE.md <https://github.com/edx/super-csv/blob/master/.github/PULL_REQUEST_TEMPLATE.md>`_.
        
        The issue report template should be automatically applied if you are creating an issue on GitHub as well. Otherwise you
        can find it at `ISSUE_TEMPLATE.md <https://github.com/edx/super-csv/blob/master/.github/ISSUE_TEMPLATE.md>`_.
        
        Reporting Security Issues
        -------------------------
        
        Please do not report security issues in public. Please email security@edx.org.
        
        Getting Help
        ------------
        
        Have a question about this repository, or about Open edX in general?  Please
        refer to this `list of resources`_ if you need any assistance.
        
        .. _list of resources: https://open.edx.org/getting-help
        
        
        .. |pypi-badge| image:: https://img.shields.io/pypi/v/super-csv.svg
            :target: https://pypi.python.org/pypi/super-csv/
            :alt: PyPI
        
        .. |travis-badge| image:: https://travis-ci.org/edx/super-csv.svg?branch=master
            :target: https://travis-ci.org/edx/super-csv
            :alt: Travis
        
        .. |codecov-badge| image:: http://codecov.io/github/edx/super-csv/coverage.svg?branch=master
            :target: http://codecov.io/github/edx/super-csv?branch=master
            :alt: Codecov
        
        .. |doc-badge| image:: https://readthedocs.org/projects/super-csv/badge/?version=latest
            :target: http://super-csv.readthedocs.io/en/latest/
            :alt: Documentation
        
        .. |pyversions-badge| image:: https://img.shields.io/pypi/pyversions/super-csv.svg
            :target: https://pypi.python.org/pypi/super-csv/
            :alt: Supported Python versions
        
        .. |license-badge| image:: https://img.shields.io/github/license/edx/super-csv.svg
            :target: https://github.com/edx/super-csv/blob/master/LICENSE.txt
            :alt: License
        
        
        Change Log
        ----------
        
        ..
           All enhancements and patches to super_csv will be documented
           in this file.  It adheres to the structure of http://keepachangelog.com/ ,
           but in reStructuredText instead of Markdown (for ease of incorporation into
           Sphinx documentation and the PyPI description).
           
           This project adheres to Semantic Versioning (http://semver.org/).
        
        .. There should always be an "Unreleased" section for changes pending release.
        
        Unreleased
        ~~~~~~~~~~
        
        [0.9.2] - 2019-09-17
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        * If a class inheriting from DeferrableMixin has a field user_id, use that user for the CSVOperation
        
        [0.9.1] - 2019-07-19
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        * Reverses the ordering of CSV operation history rows
        
        [0.8] - 2019-07-22
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        * Changes checksum column to avoid CSV quoting issues
        
        [0.7.1] - 2019-07-19
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        * Exposes additional fields in serialized history of operations re:degree of success of the operation
        
        [0.5.0] - 2019-07-02
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        * Exposes methods for serializing history of operations for particular processors.
        
        [0.1.0] - 2019-05-15
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        Added
        _____
        
        * First release on PyPI.
        
Keywords: Django edx
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
