django-cpss-twitter

This is the Django component that helps to integrate aspects of twitter into your application.


License
MIT
Install
pip install django-cpss-twitter==0.2.0

Documentation

🛠 Status: In Development

django-cpss-twitter currently in development.

Python Twitter API - Django CPSS by XGDFalcon®

Build Status PyPI version

Description

This is the Django component of the Python Twitter Tools project, it implements the needed functionality to integrate Python Twitter Tools in a Django based project.

Django version

This project will focus on the currently supported Django releases as stated on the Django Project Supported Versions table.

Backward compatibility with unsupported versions won't be enforced.

Documentation

Project documentation is available at TBP.

Setup

  1. Add "django-cpss-twitter" to your INSTALLED_APPS setting like this::
    INSTALLED_APPS = [
        ...
        'twitter-django.CPSSTwitterConfig',
    ]
  1. Include the django-cpss-twitter URLconf in your project urls.py like this::
    path('twitter/', include('django-cpss-twitter.urls')),
  1. Run python manage.py migrate to create the django-cpss-twitter models.

  2. Start the development server and visit http://127.0.0.1:8000/admin/ to create a client config (you'll need the Admin app enabled).

  3. Visit http://127.0.0.1:8000/twitter/

Contributing

See the CONTRIBUTING.md document for details.

Versioning

This project follows Semantic Versioning 2.0.0.

License

This project follows the Apache license. See the LICENSE for details.