Metadata-Version: 2.1
Name: django-import-export-xml
Version: 0.2.0
Summary: An XML export format for django-import-export
Author-email: Maykin Media <support@maykinmedia.nl>
License: MIT License
        
        Copyright (c) 2018 Maykin Media
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/maykinmedia/django-import-export-xml
Project-URL: Bug Tracker, https://github.com/maykinmedia/django-import-export-xml/issues
Project-URL: Source Code, https://github.com/maykinmedia/django-import-export-xml
Keywords: TODO
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: dicttoxml
Requires-Dist: django-import-export
Provides-Extra: coverage
Requires-Dist: pytest-cov ; extra == 'coverage'
Provides-Extra: release
Requires-Dist: bump-my-version ; extra == 'release'
Requires-Dist: twine ; extra == 'release'
Provides-Extra: tests
Requires-Dist: black ; extra == 'tests'
Requires-Dist: flake8 ; extra == 'tests'
Requires-Dist: isort ; extra == 'tests'
Requires-Dist: pytest ; extra == 'tests'
Requires-Dist: pytest-django ; extra == 'tests'
Requires-Dist: tox ; extra == 'tests'

========================
django-import-export-xml
========================

:Version: 0.2.0
:Source: https://github.com/maykinmedia/django-import-export-xml
:PythonVersion: 3.9

|build-status| |code-quality| |black| |coverage|

|python-versions| |django-versions| |pypi-version|

An XML *export* format for django-import-export

.. contents::

.. section-numbering::

Installation
============

Requirements
------------

* Python 3.9 or above
* Django 3.2 or newer


Install
-------

.. code-block:: bash

    pip install django-import-export-xml


Usage
=====

Use it like any of the built-in formats: https://django-import-export.readthedocs.io/en/stable/installation.html#import-export-formats

Local development
=================

To install and develop the library locally, use:

.. code-block:: bash

    pip install -e .[tests,coverage,release]

When running management commands via ``django-admin``, make sure to add the root
directory to the python path (or use ``python -m django <command>``):

.. code-block:: bash

    export PYTHONPATH=. DJANGO_SETTINGS_MODULE=testapp.settings
    django-admin check
    # or other commands like:
    # django-admin makemessages -l nl


.. |build-status| image:: https://github.com/maykinmedia/django-import-export-xml/workflows/Run%20CI/badge.svg
    :alt: Build status
    :target: https://github.com/maykinmedia/django-import-export-xml/actions?query=workflow%3A%22Run+CI%22

.. |code-quality| image:: https://github.com/maykinmedia/django-import-export-xml/workflows/Code%20quality%20checks/badge.svg
     :alt: Code quality checks
     :target: https://github.com/maykinmedia/django-import-export-xml/actions?query=workflow%3A%22Code+quality+checks%22

.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black

.. |coverage| image:: https://codecov.io/gh/maykinmedia/django_import_export_xml/branch/main/graph/badge.svg
    :target: https://codecov.io/gh/maykinmedia/django_import_export_xml
    :alt: Coverage status

.. |python-versions| image:: https://img.shields.io/pypi/pyversions/django_import_export_xml.svg

.. |django-versions| image:: https://img.shields.io/pypi/djversions/django_import_export_xml.svg

.. |pypi-version| image:: https://img.shields.io/pypi/v/django_import_export_xml.svg
    :target: https://pypi.org/project/django_import_export_xml/
