Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
springload/awesome-wagtail: A curated list of awesome packages, articles, and other cool resources from the Wagtail community.
-
Django Channels — Channels 1.1.8 documentation
Channels is a project to make Django able to handle more than just plain HTTP requests, including WebSockets and HTTP2, as well as the ability to run code after a response has been sent for things like thumbnailing or background calculation. -
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
Thus: Django Channels. Channels, in a nutshell, replaces the “guts” of Django — the request/response cycle — with messages that are sent across channels. Channels allows Django to support WebSockets in a way that’s very similar to traditional HTTP views. Channels also allow for background tasks that run on the same servers as the rest of Django. HTTP requests continue to behave the same as before, but also get routed over channels. Thus, under Channels Django now looks like this: -
unit testing - Logging output running django tests under Pycharm - Stack Overflow
'name_your_app': { 'handlers': ['file', 'console'], 'level': 'DEBUG', } } } In UnitTest file import logging logger = logging.getLogger('django_test') logger.info('test_log') And Log will be appearance. -
The Web framework for perfectionists with deadlines | Django
-
How to Create Group By Queries With Django ORM
-
django-payments — django-payments 0.9.0 documentation
-
Reusing Django include urls for index - sjoerdjob.com
After applying this method some more, I have found one draw-back: The reverse(...) does not work anymore. However, the fix is easy: just make sure the \Z-pattern is after the actual pattern. urlpatterns = [ url(r^foo-app/', include(foo_app.urls)), url(r'^\Z', include(foo_app.urls)), -
SectorLabs/django-postgres-extra: Bringing all of PostgreSQL's awesomeness to Django.
-
MicroPyramid/django-mfa: Django app for providing MFA (Multi-Factor Authentication).
-
Crushing, caching and CDN deployment in Django
-
pygmy: Open-source, feature rich and extensible URL shortener - Flask/Django
-
collab-ide - An online real-time collaborative IDE for teams built on Django/Python
https://www.reddit.com/r/Python/comments/7ds1yr/i_made_a_realtime_collaborative_ide_for_teams_to/ -
How to Render Django Form Manually
I needed a refresher on how to style Django forms with Bootstrap4 and this ended up being all I needed. +1 -
A Complete Beginner's Guide to Django
-
python实现微信第三方网站扫码登录(Django) - 简书
-
编写你的第一个Django应用,第1部分 — Django 1.8.2 中文文档
-
pinax/pinax-stripe: a payments Django app for Stripe
-
#25165 (Move JavaScript calls out of HTML to fix JavaScript "no-script-eval" warnings) – Django
-
Twitter
RT @PacktPub: #WebDevelopment with #Django Cookbook is today's free eBook. #python -
pinax-stripe 4.0.0 Released - Stripe Connect support lands : django
-
GitHub - SectorLabs/django-postgres-extra: Bringing all of PostgreSQL's awesomeness to Django.
-
logandk/serverless-wsgi: Serverless plugin to deploy WSGI applications (Flask/Django/Pyramid etc.) and bundle Python packages
serverless-wsgi - Serverless plugin to deploy WSGI applications (Flask/Django/Pyramid etc.) and bundle Python packages -
Tony Lechner - Software Engineer
-
Deploying Django + Python 3 + PostgreSQL to AWS Elastic Beanstalk - Real Python