Metadata-Version: 1.1
Name: django-wordpress-api
Version: 0.1.20
Summary: Easily Install your Wordpress blog in your Django project using wp rest API v1
Home-page: https://github.com/swappsco/django-wordpress-api
Author: Swapps
Author-email: dev@swapps.io
License: MIT
Description: =============================
        Django Wordpress API
        =============================
        
        .. image:: https://badge.fury.io/py/django-wordpress-api.png
            :target: https://badge.fury.io/py/django-wordpress-api
        
        .. image:: https://travis-ci.org/swappsco/django-wordpress-api.png?branch=master
            :target: https://travis-ci.org/swappsco/django-wordpress-api
        
        .. image:: https://coveralls.io/repos/github/swappsco/django-wordpress-api/badge.svg?branch=master
        	:target: https://coveralls.io/github/swappsco/django-wordpress-api?branch=master
        
        .. image:: https://readthedocs.org/projects/django-wordpress-api/badge/?version=latest
        	:target: http://django-wordpress-api.readthedocs.io/en/latest/?badge=latest
        
        
        Easily Install your Wordpress blog in your Django project
        
        This package  allows to communicate easily with any wordpress project that is using `WP REST API v1 <http://wp-api.org/index-deprecated.html>`_ .
        
        Even though the WP REST API package is already on the 2 version; it is still on beta so it was decided that this package will only support v1 until v2 is out of beta.
        
        Documentation
        -------------
        
        The full documentation is at https://django-wordpress-api.readthedocs.org.
        
        Quickstart
        ----------
        
        Install Django Wordpres API::
        
            pip install django-wordpress-api
        
        Then use it in a project::
        
            import wordpress_api
        
        Features
        --------
        
        * Connect to an external wordpress application
        * Retrieves all the blog posts ordered by pages
        * Filter blog posts using several of the `available filters in WP REST API <http://wp-api.org/index-deprecated.html#posts_retrieve-posts>`_
        * Search blog posts using a keyword
        * order the blog posts by several attributes like author, title, type, etc; ascending and descending order (default order is descending date)
        * Retrieve posts with a different type than "post"
        * Four Views to display the blog page, The Post detail, The Posts filtered by category and the Posts filtered by tag; All of this with the search by keyword option
        
        Running Tests
        --------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install -r requirements.txt
            (myenv) $ pip install -r requirements_test.txt
            (myenv) $ python manage.py test
        
        Credits
        ---------
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.1.0 (2016-09-02)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-wordpress-api
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
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.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
