Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Djangae | 588 | 27 | 1 | 16 days ago | 18 | December 15, 2021 | 111 | bsd-3-clause | Python | |
The best way to run Django on Google Cloud. This project is now on GitLab: https://gitlab.com/potato-oss/djangae/djangae | ||||||||||
Rietveld | 455 | 3 years ago | 238 | apache-2.0 | Python | |||||
Code Review, hosted on Google App Engine | ||||||||||
Django Address | 356 | 32 | 3 | a year ago | 15 | May 06, 2022 | 37 | bsd-3-clause | Python | |
A Django address model and field. Addresses may be specified by address components or by performing an automatic Google Maps lookup. | ||||||||||
Django Google Maps | 252 | 33 | 1 | a year ago | 20 | March 22, 2022 | 14 | bsd-2-clause | Python | |
Using the Google Maps API with django model admin | ||||||||||
Demo Allauth Bootstrap | 210 | a year ago | 1 | other | Python | |||||
Django sample app with users including social auth via Django-AllAuth | ||||||||||
Django Blog It | 208 | 6 | a year ago | 8 | January 28, 2019 | 21 | mit | HTML | ||
django blog - complete customization and ready to use with one click installer | ||||||||||
Rele | 192 | 2 | a month ago | 27 | November 15, 2022 | 23 | apache-2.0 | Python | ||
Easy to use Google Pub/Sub | ||||||||||
Hexopress | 188 | 2 years ago | 10 | Python | ||||||
A tiny blogging platform that lets you write posts in Google Docs and syncs with a Google Drive directory. | ||||||||||
Django Googlecharts | 187 | 1 | 7 years ago | 1 | November 30, 2009 | 2 | other | Python | ||
A suite of Django template tags to generate charts using Google's chart API. | ||||||||||
Django Google Analytics | 168 | 4 | 6 years ago | October 24, 2018 | 12 | mit | Python | |||
A simple django application to using Google Analytics in your project and tying different GA tags to different sites |
Simple blog package developed with Django.
Features:
Install django-blog-it using the following command:
pip install django-blog-it (or) git clone git://github.com/micropyramid/django-blog-it.git cd django-blog-it python setup.py install
Add app name in settings.py:
INSTALLED_APPS = [ '..................', 'simple_pagination', 'django_blog_it.django_blog_it', '..................' ]
Include the django_blog_it urls in your urls.py:
from django.conf.urls import include urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'', include('django_blog_it.urls')), ]
After installing/cloning this, add the following settings in the virtual env/bin/activate file to start discussions on blog articles
You can create your disqus account at https://disqus.com/profile/login/ # Disquss details DISQUSSHORTNAME="Your Disquss Short Name" export DISQUSSHORTNAME # google api key for short url API_KEY="google api key" export API_KEY # google captcha GOOGLE_CAPTCHA_SITE_KEY="Site key" export GOOGLE_CAPTCHA_SITE_KEY GOOGLE_CAPTCHA_SECRET_KEY="Secret key" export GOOGLE_CAPTCHA_SECRET_KEY # Google Analytics Account GOOGLE_ANALYTICS_ID="UA-123456789" export GOOGLE_ANALYTICS_ID # Google Login GP_CLIENT_ID="google client id" export GP_CLIENT_ID GP_CLIENT_SECRET="secret key" export GP_CLIENT_SECRET # Facebook Login FB_APP_ID="facebook app id" export FB_APP_ID FB_SECRET="023df180c6d868e76a02aec17134c843" export FB_SECRET # Default E-mail DEFAULT_EMAIL="[email protected]" export DEFAULT_EMAIL
If you cloned the package from git use virtualenv to install requirements:
pip install -r requirements.txt
You can try it by hosting on your own or deploy to Heroku with a button click.
Deploy To Heroku:
Visit our Django web development page Here
We welcome your feedback and support, raise github ticket if you want to report a bug. Need new features? Contact us here