Metadata-Version: 2.1
Name: django-dataporten
Version: 0.2.1
Summary: A simple Django app to fetch and parse data from Dataporten.
Home-page: https://github.com/JakobGM/django-dataporten
Author: Jakob Gerhard Martinussen
Author-email: jakobgm@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Requires-Dist: django
Requires-Dist: pip-tools
Requires-Dist: pytest
Requires-Dist: pytest-django
Requires-Dist: requests
Requires-Dist: requests-cache
Requires-Dist: responses
Requires-Dist: mypy
Requires-Dist: mypy-extensions
Requires-Dist: freezegun
Requires-Dist: factory-boy
Requires-Dist: django-allauth

=================
Django-dataporten
=================

Django-dataporten is a simple Django app to fetch data from dataporten and connect it to a user.

Quick start
-----------

1. Add "dataporten" to your INSTALLED_APPS setting like this

.. code:: python

    INSTALLED_APPS = [
        ...
        'dataporten',
    ]


2. Run `python manage.py migrate` to create the dataporten proxy models.

3. In your settings.py file, add the variable DATAPORTEN_TOKEN_FUNCTION, which should be a dotted path to the function that will retrieve user tokens. The function should accept a :code:`User` and return a :code:`str`. Here is a python3.6 example that will work if you use `django-allauth`_:

.. code:: python

    def allauth_token(user: User) -> str:
        return SocialToken.objects.get(
            account__user=user,
            account__provider='dataporten',
        ).token

.. _django-allauth: https://github.com/pennersr/django-allauth:

Run tests
_________

.. code:: bash

    export DJANGO_SETTINGS_MODULE=dataporten.settings
    pytest


