gitextract_08i4p9oj/ ├── .bumpversion.cfg ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── gh-release.yml │ └── pythonpackage.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── VERSION ├── django_social_share/ │ ├── __init__.py │ ├── models.py │ ├── templates/ │ │ └── django_social_share/ │ │ └── templatetags/ │ │ ├── copy_script.html │ │ ├── copy_to_clipboard.html │ │ ├── pinterest_script.html │ │ ├── post_to_facebook.html │ │ ├── post_to_gplus.html │ │ ├── post_to_linkedin.html │ │ ├── post_to_reddit.html │ │ ├── post_to_telegram.html │ │ ├── post_to_twitter.html │ │ ├── post_to_whatsapp.html │ │ ├── save_to_pinterest.html │ │ └── send_email.html │ ├── templatetags/ │ │ ├── __init__.py │ │ └── social_share.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── runtests.py │ │ └── tests.py │ └── views.py ├── setup.cfg └── setup.py