Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
How to add Wagtail page programmatically via Python script
Given: Two Wagtail CMS page classes: class Section(Page): subtitle = models.Charfield(max_length=128) class News(Page): content = models.Textfield() Task: Using a python script, add a News page item under the Section page titled "Latest news." Solution: 1) Get parent page instance: parent_page = Page.objects.get(title='Latest news' ... Read now -
Basics of Django Rest Framework
What Is Django Rest Framework? Django Rest Framework (DRF) is a library which works with standard Django models to build a flexible and powerful API for your project. -
Container Runtimes Part 2: Anatomy of a Low-Level Container Runtime
This is the second in a four-part series on container runtimes. In part 1, I gave an overview of container runtimes and discussed the differences between low-level and high-level runtimes. In this post I will go into detail on low- level container runtimes. Low-level runtimes have a limited feature set and typically perform the low- level tasks for running a container. Most developers shouldn't use them for their day-to-day work. Low-level runtimes are usually implemented as simple tools or libraries that developers of higher level runtimes and tools can use for the low-level features. W[...] -
Container Runtimes Part 2: Anatomy of a Low-Level Container Runtime
This is the second in a four-part series on container runtimes. In part 1, I gave an overview of container runtimes and discussed the differences between low-level and high-level runtimes. In this post I will go into detail on low- level container runtimes. Low-level runtimes have a limited feature set and typically perform the low- level tasks for running a container. Most developers shouldn't use them for their day-to-day work. Low-level runtimes are usually implemented as simple tools or libraries that developers of higher level runtimes and tools can use for the low-level features. W[...] -
Synchronizing Django model definitions
This is about a small problem we faced with the models used for customers in YPlan, now Time Out Checkout. Customers are stored in two models: Customer for active customers, and RemovedCustomer for inactive customers. When a customer closes their account, a subset of the fields are copied to RemovedCustomer, to comply with data retention policies, and then the original Customer is wiped. The two models are defined something like this: class Customer(models.Model): name = models.CharField(max_length=128, blank=True) email = models.CharField(max_length=128, null=True, unique=True) # etc. class RemovedCustomer(models.Model): name = models.CharField(max_length=128, blank=True) email = models.CharField(max_length=128, null=True) # etc. name and email are two of the fields copied on closure - they’re nearly identical, except RemovedCustomer.email is not unique, because the same email address could be used for multiple accounts that get removed one after another. The problem we faced was keeping the definitions of these fields synchronized, differences like unique asides. Initially the two model classes were declared in the usual way, as above, with the field definitions copy-pasted. This meant that changes to one model needed copying to the other. Unfortunately this got forgotten when a field on Customer had its max_length extended, so it wasn’t copied to RemovedCustomer, and the … -
Raspberry Pi Awesome // Install Scripts for Python 3, OpenCV, Dli & Others
I've found setting up my Raspb... -
Raspberry Pi Network Server Guide with Django & SSH
In this post, we'll be setting... -
OpenCV & Python // Web Camera Quick Test
This post assumes you have eit... -
Install OpenCV 3 for Python on Windows
OpenCV, aka Open Computer Visi... -
My Python Development Environment, 2018 Edition
This is out of date. For a newer version, see My Python Development Environment, 2020 Edition For years I’ve noodled around with various setups for a Python development environment, and never really found something I loved – until now. My setup pieces together pyenv, pipenv, and pipsi. It’s probably a tad more complex that is ideal for most Python users, but for the things I need, it’s perfect. My Requirements I do have somewhat specific (maybe unusual? -
Django development with Docker —A completed development cycle
After finishing the last post about Django development with Docker, we got a host-isolated development environment, which allows us to encapsulate our application and dependencies. Let’s review some tips and improvements for our environment.IntroductionUsually on our development environment, we can access to the local database, install different requirements, reload the running server on code changes, use different settings or running different commands. If we cannot do that, our development cycle could be slow and tedious.In order to solve that, we need to implement these features:Accessing the containers database (Using ports )Installing different requirements or using different settings (Using ARG and ENV )Reloading the running server on code changes (Using volumes)Accessing the database(Thanks Dilip Maharjan for inspiring this part)From our last post, this is our configuration. Our database service definition in compose looks like:https://medium.com/media/35df038b3b4523db615116fe32f5fca4/hrefAnd our Django settings looks like:https://medium.com/media/a86b17b1eb6442fa8f29b23b4e0aed22/hrefFrom time to time, you might want to access the database directly, but we cannot access to the database container directly from outside the django container.The Django application inside the container can access to the database container because they are in the same network and Docker has a feature called “automatic service discovery”, which resolves “db” to an IP of that network. Read … -
Continuous Integration and Deployment with Drone, Docker, Django, Gunicorn and Nginx - Part 3
The Introduction This is the third and final part of a multi-part tutorial covering a simple(ish) setup of a continuous integration/deployment pipeline using Drone.io:0.5. Since Part 2, Drone.io:0.8 has become available. This new version boasts much better documentation and is comparably much easier to set up than Drone.io:0.5 and even outlines how to set up your server behind NGINX. In parts 1 and 2 of this series we: Set up our Drone server Added a .drone.yml to our Django application and configured it to tell Drone to run our application’s test suite Added a condition on our master branch to only allow passed build to be merged Added a publish step to our .drone.yml to be triggered on merges to publish an updated version of our application’s code to Dockerhub Created a systemd service to manage our application’s Docker container on our EC2 instance Created a deploy.sh script on our EC2 instance that stops and removes our app’s Docker container, pulls an updated image for the container from Dockerhub and then restarts the systemd service managing the container. Lastly, we added a deploy step to our .drone.yml to ssh into our EC2 container and run the deploy.sh script. The last … -
How to Hide And Auto-populate Title Field of a Page in Wagtail CMS
Given from django.db import models from wagtail.wagtailsnippets.models import register_snippet class CountryPage(Page): country = models.ForeignKey('Country', blank=False, null=True, unique=True) class Country(models.Model): name = models.CharField(max_length=128) Task I want to have the title field of my CountryPage to be auto-populated with a ... Read now -
Django Single Sign On(SSO) to multiple applications
Single sign on is a way for users to issue a security token for the first time login, login into multiple applications using one set of credentials i.e security token. Adding sso to an application will make things easier for users, because they dont need to remember login credentials for multiple applications. User just need to enter their login credentials for first time instead of re-entering their credentials for every application login. In this post, we'll see how to add single sign on to multiple django applications using django-simple-sso. Using django-simple-sso, we should have single server, multiple clients. 1. Server will have all users information which'll authenticate user details at the time of login, creates token for the first time. Using their security tokens, it'll authenticates user details 2. Each Client or application needs to generate their public key, private key in the server to perform requests securely. How Django SSO works for multiple applications? User --> application -- > SSO Server --> application 1. When User log into an application, the client will send a request with next GET parameter, which have redirect url after successful login 2. Request details(application details: public key, private key, redirect url) will be … -
Add Value To Your Django Project With An API
How do your users interact with your web app? Do you have users who are requesting new features? Are there more good feature requests than you have developer hours to build? Often, a small addition to your app can open the door to let users build features they want (within limits) without using more of your own developers’ time, and you can still keep control over how data can be accessed or changed. That small addition is called an application programming interface, or API. APIs are used across the web, but if you aren’t a developer, you may not have heard of them. They can be easily built on top of Django projects, though, and can provide great value to your own developers as well as to your users. -
Running Django Web Apps On Android Devices
When deploying a django webapp to Linux servers, Nginx/Apache as server, PostgreSQL/MySQL as database are preferred. For this tutorial, we will be using django development server with SQLite database. First install SSHDroid app on Android. It will start ssh server on port 2222. If android phone is rooted, we can run ssh on port 22. Now install QPython. This comes bundled with pip, which will install required python packages. Instead of installing these two apps, we can use Termux, GNURoot Debian or some other app which provides Linux environment in Android. These apps will provide apt package manager, which can install python and openssh-server packages. I have used django-bookmarks, a simple CRUD app to test this setup. We can use rsync or adb shell to copy django project to android. rsync -razP django-bookmarks :$USER@$HOST:/data/local/ Now ssh into android, install django and start django server. $ ssh -v $USER@$HOST $ python -m pip install django $ cd /data/local/django-bookmarks $ python manage.py runvserver This will start development server on port 8000. To share this webapp with others, we will expose it with serveo. $ ssh -R 80:localhost:8000 serveo.net Forwarding HTTP traffic from https://incepro.serveo.net Press g to start a GUI session and ctrl-c … -
Running Django Web Apps On Android Devices
When deploying a django webapp to Linux servers, Nginx/Apache as server, PostgreSQL/MySQL as database are preferred. For this tutorial, we will be using django development server with SQLite database. First install SSHDroid app on Android. It will start ssh server on port 2222. If android phone is rooted, we can run ssh on port 22. Now install QPython. This comes bundled with pip, which will install required python packages. Instead of installing these two apps, we can use Termux, GNURoot Debian or some other app which provides Linux environment in Android. These apps will provide apt package manager, which can install python and openssh-server packages. I have used django-bookmarks, a simple CRUD app to test this setup. We can use rsync or adb shell to copy django project to android. rsync -razP django-bookmarks :$USER@$HOST:/data/local/ Now ssh into android, install django and start django server. $ ssh -v $USER@$HOST $ python -m pip install django $ cd /data/local/django-bookmarks $ python manage.py runvserver This will start development server on port 8000. To share this webapp with others, we will expose it with serveo. $ ssh -R 80:localhost:8000 serveo.net Forwarding HTTP traffic from https://incepro.serveo.net Press g to start a GUI session and ctrl-c … -
Running Django Web Apps On Android Devices
When deploying a django webapp to Linux servers, Nginx/Apache as server, PostgreSQL/MySQL as database are preferred. For this tutorial, we will be using django development server with SQLite database. First install SSHDroid app on Android. It will start ssh server on port 2222. If android phone is rooted, we can run ssh on port 22. Now install QPython. This comes bundled with pip, which will install required python packages. Instead of installing these two apps, we can use Termux, GNURoot Debian or some other app which provides Linux environment in Android. These apps will provide apt package manager, which can install python and openssh-server packages. I have used django-bookmarks, a simple CRUD app to test this setup. We can use rsync or adb shell to copy django project to android. rsync -razP django-bookmarks :$USER@$HOST:/data/local/ Now ssh into android, install django and start django server. $ ssh -v $USER@$HOST $ python -m pip install django $ cd /data/local/django-bookmarks $ python manage.py runvserver This will start development server on port 8000. To share this webapp with others, we will expose it with serveo. $ ssh -R 80:localhost:8000 serveo.net Forwarding HTTP traffic from https://incepro.serveo.net Press g to start a GUI session and ctrl-c … -
Deep Learning Acronym Cheatsheet
Below as a list I'm working on... -
Django Tips #22 Designing Better Models
In this post, I will share some tips to help you improve the design of your Django Models. Many of those tips are related to naming conventions, which can improve a lot the readability of your code. The PEP8 is widely used in the Python ecosystem (Django included). So it’s a good idea to use it in your own projects. Besides PEP8, I like to follow Django’s Coding Style which is a guideline for people writing code for inclusion in the Django code base itself. Below, an overview of the items we are going to explore: Naming Your Models Model Style Ordering Reverse Relationships Blank and Null Fields Naming Your Models The model definition is a class, so always use CapWords convention (no underscores). E.g. User, Permission, ContentType, etc. For the model’s attributes use snake_case. E.g. first_name, last_name, etc. Example: from django.db import models class Company(models.Model): name = models.CharField(max_length=30) vat_identification_number = models.CharField(max_length=20) Always name your models using singular. Call it Company instead of Companies. A model definition is the representation of a single object (the object in this example is a company), and not a collection of companies. This usually cause confusion because we tend to think in terms of … -
The case for a Django upgrade
Like eating Brussels sprouts, everyone knows that keeping software current is good for you. But getting clients to actually upgrade regularly is hard. Why is that? It boils down to this. An upgrade costs money, sometimes a lot of money, but the result has no visible outcome. In fact, in many cases the only outcome is an assurance that you've reduced the probability of attack, intrusion, breach and related unpleasantness. By any measure, that's a tough sales pitch. It's hard to get people to pay for things they can't see. But, like eating your Brussels sprouts, it is important for good health and is part of the cost of doing business online. In an effort to provide believable ammunition to those seeking upgrade funds, we thought it might be helpful to offer some specifics. Although the following is presented through the lens of a website using Python and Django, the principles remain the same for any language or framework. Support for Django 1.8 ends in April 2018. Django is on a consistent release schedule where each third version is a long-term release, meaning it is supported longer than the others. There are plenty of good reasons to upgrade for each … -
Django QuerySet to CSV Files & Datasets
Django QuerySets to CSVs is a ... -
Facebook integration in your website
This post includes how to integrate facebook login in a website using Django. Uses of integrating facebook login: Instead of registration we use facebook login because facebook login takes less time than registration. we can get verified email ids from facebook. Post user actions on userwalls, pages, groups. Send invitations to user friends via logged in user. Send requests from your app to user. The following steps needed for integration. Creating Facebook app. Authenticating user and getting accesstoken. Get user information using accesstoken. Get user friends list. Get user pages. Get user groups. 1.Creating Facebook app: To create facebook app click here and go to apps on top of the page. Click on create new app.The resulting popup box will prompt you to enter 3 things: AppName, Namespace & category. After creating app you will be provided a dash board and grab both the app Id and app secret. Complete the all field in settings basic tab.Click Add Platform at the bottom of the page and select Website.Enter a path where you will want to store your file(i.e redirected url). 2.Authenticating user and getting accesstoken: Authentication flow contains 3 steps. i.Generates a URL asking the user for permission. ii.Facebook returns … -
Understanding Django model formsets in detail and their advanced usage.
Similar to the regular formsets, Django also provides model formset that makes it easy to work with Django models. Django model formsets provide a way to edit or create multiple model instances within a single form. Model Formsets are created by a factory method. The default factory method is modelformset_factory(). It wraps formset factory to model forms. We can also create inlineformset_factory() to edit related objects. inlineformset_factory wraps modelformset_factory to restrict the queryset and set the initial data to the instance’s related objects. Step1: Create model in models.py class User(models.Model): first_name = models.CharField(max_length=150) last_name = models.CharField(max_length=150) user_group = models.ForeignKey(Group) birth_date = models.DateField(blank=True, null=True) Step2: in forms.py from django.forms.models import modelformset_factory from myapp.models import User UserFormSet = modelformset_factory(User, exclude=()) This will create formset which is capable of working with data associated with User model. We can also pass the queryset data to model formset so that it can do the changes to the given queryset only. formset = UserFormSet(queryset=User.objects.filter(first_name__startswith='M')) We can produce an extra form in the template by passing 'extra' argument to the modelformset_factory method, we can use this as follows. UserFormSet = modelformset_factory(User, exclude=(), extra=1) We can customize the form that will be displayed in the … -
How to develop RESTful webservice in Django using Django REST framework?
DjangoRestFramework is widely used to develop restful API. Django REST Framework is easy to use who are familiar with Django, as it is developed on the core concepts of Django. In the current blog post we’ll learn how to develop a RESTful API that performs CRUD operations on the DB. Install Django REST famework using pip command and keep ‘rest_framework’ in your INSTALLED_APPS. Install: pip install djangorestframework In settings.py INSTALLED_APPS = ( ... 'rest_framework', ) Now lets create an application with name api and create a model called ‘Country’ on which we will perform our CRUD operations. In api/models.py from django.db import models class Country(models.Model): name = models.CharField(max_length=10) Add api to your INSTALLED_APPS. INSTALLED_APPS = ( ... 'rest_framework', ‘api’, ) Create migrations with makemigrations and migrate command which creates the tables in your DB. python manage.py makemigrations python manage.py migrate One of the important part of the djangorestframework is the serializers. Serializers allow complex data such as querysets and model instances to be converted to native Python datatypes that can then be easily rendered into JSON, XML or other content types. Serializers also provide deserialization, allowing parsed data …