Skip to content

udox/django-social-tools

Repository files navigation

Django-social-tools

Django-social-tools is a Django app that scrapes social posts from instagram and twitter based on search terms that can be configured through the admin screen.

Quick start

  1. pip install --process-dependency-links -e git://github.com/udox/django-social-tools.git@master#egg=django-social-tools
  2. Add "socialtool.social" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'socialtool.social',
    )
  3. Include the social URLconf in your project urls.py like this:

    url(r'^social/', include('socialtool.social.urls')),
  4. Run python manage.py migrate to create the social models.

4. Run python manage.py sync to import social posts. This should be running in a cron job to ensure data is fresh

About

Django app that scrapes social posts from twitter and instagram based on search terms

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published