TAXIIProject / django-taxii-services

Installable taxii_services
http://taxiiproject.github.io/
BSD 3-Clause "New" or "Revised" License
20 stars 13 forks source link

django-taxii-services

Please Note:

This library is no longer maintained. If you need an open source TAXII 1.X implementation, please see this list of other libraries <https://wiki.oasis-open.org/cti/Open%20Source%20Projects>__.

:Source: https://github.com/TAXIIProject/django-taxii-services :Documentation: http://taxii-services.readthedocs.io :Information: http://taxiiproject.github.io/ :Download: https://pypi.python.org/pypi/taxii-services

|travis badge| |landscape.io badge| |version badge| |downloads badge|

.. |travis badge| image:: https://api.travis-ci.org/TAXIIProject/django-taxii-services.svg?branch=master :target: https://travis-ci.org/TAXIIProject/django-taxii-services :alt: Build Status .. |landscape.io badge| image:: https://landscape.io/github/TAXIIProject/django-taxii-services/master/landscape.svg?style=flat :target: https://landscape.io/github/TAXIIProject/django-taxii-services/master :alt: Code Health .. |version badge| image:: https://img.shields.io/pypi/v/taxii-services.svg?maxAge=3600 :target: https://pypi.python.org/pypi/taxii-services/ .. |downloads badge| image:: https://img.shields.io/pypi/dm/taxii-services.svg?maxAge=3600 :target: https://pypi.python.org/pypi/taxii-services/

Overview

django-taxii-services is an installable Django app that enables application developers to rapidly create TAXII Applications that cover any aspect of TAXII 1.0 and TAXII 1.1. Key aspects of django-taxii-services include:

If you see anything you'd like to ask a question on, please open an issue on GitHub or contact the TAXII Team at taxii@mitre.org.

Using django-taxii-services

Create your own Django project, install django-taxii-services, and modify your settings.py to add taxii_services (e.g.,):

.. code:: python

INSTALLED_APPS = (
    ...
    'taxii_services',
)

MIDDLEWARE_CLASSES = (
    ...
    'taxii_services.middleware.StatusMessageExceptionMiddleware'
)

# Add a logger if you'd like
LOGGING = {
    ...
    'loggers': {
        ...
        'taxii_services': {
            'handlers': ['normal','stdout'],
            'level': LOG_LEVEL,
            'propagate': True,
        },
    }
}

Some Key Features

(This section is kind of a brain dump and should eventually be moved to readthedocs when it matures)

Dependencies

TODO: Document the dependencies

Feedback

Please provide feedback and/or comments on open issues to taxii@mitre.org.

License

For license information, see the LICENSE.txt file.