Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Python Asyncio Web Scraping
A lot of Python programs are S... -
What to use at my new job: mac or linux?
First things first: "new job"? Yes, I'm switching jobs. I'll give more details once my new job actually has a website. They're quite a new company :-) Question: "new job" means "new laptop". And I'm wondering if you could give me some input on whether to ask for a mac or a linux laptop. What is currently the best choice? (Yes, windows is totally out). For the last 15 years I've only used macbooks, apart from the first year at my current job. After that first year I managed to switch back to apple. Before those 15 years I used linux desktops (slackware, suse, debian, mandrake) for 10 years. And before that windows 3.1. Some of my thoughts: The three year old macbook pro 15" I have now is such a wonderful machine. Well made. Great screen. If someone looks over your shoulder, they actually see what is on your screen. On many laptops, you have to sit right in front of it, because the screen starts to darken if you look at it from an angle. Not so on my macbook. Oh, and the sharpness of the characters.... I'm someone who really enjoys such beauty. The best trackpad there … -
Facebook Messenger Bot with Django
We still have to do a live tes... -
A Multiple Model Django Search Engine
The Django [ORM](https://en.wi... -
Thoughts on Publishing a Technical Book (Part 2)
What I've learned writing and self-publishing a book on web development with Django. -
Tutorial: Django REST with React (Django 3 and a sprinkle of testing)
I gave a talk: "Decoupling Django with Django REST and React" at Pycon Italy X in Florence. Slides here! Django REST with React: what you will learn In the following tutorial you’ll learn: how to build a simple Django REST API how to structure a Django project with React Django REST with React: requirements To follow along with the tutorial you should have: a basic understanding of Python and Django. a basic understanding of JavaScript (ECMAScript 2015) and React. a newer version of Node.js installed on your system Ready? Let's get started! Django REST with React: setting up a Python virtual environment, and the project First things first make sure to have a Python virtual environment in place. Create a new folder and move into it: mkdir django-react && cd $_ Once done create and activate the new Python environment: python3 -m venv venv source venv/bin/activate NOTE: from now on make sure to be always in the django-react folder and to have the Python environment active. Now let's pull in the dependencies: pip install django djangorestframework When the installation ends you're ready to create a new Django project: django-admin startproject django_react . Now we can start building our first Django … -
HOWTO: Working with Python, Unicode, and Arabic
When working with non-European languages such as Arabic and Chinese, a practical understanding of Unicode is necessary. My research group uses Java for larger applications, and although Java represents all strings in Unicode, it is often cumbersome to write small Java applications for the various data manipulation tasks that appear while preparing corpora for translation. Therefore, fluency in one of the dynamically-typed scripting languages can be immensely useful in this particular domain. I prefer Python for its intuitive Unicode support and minimalist syntax. This article provides sample Python code for several common use cases that require particular consideration of string encodings. Perl offers analogous capabilities, but Ruby’s Unicode support is somewhat limited as of Ruby 1.9. (Note that this document is valid for Python 2.5.x only; Python3k introduces numerous incompatibilities.) Working with Strings Python supports two methods of constructing Unicode strings. The unicode() built-in function constructs a string with a default encoding of utf-8. The u” shorthand notation is equivalent: best = unicode('?????', encoding='utf-8') #Preferred method old = u'?????' #Deprecated in Python3k To convert between one encoding and another, use the string method encode(): ascii_string = 'My anglo-centric string...' utf8_string = ascii_string.encode('utf-8') #Concatenation works as expected utf8_string = utf8_string + … -
How Django URLs work with Regular Expressions
Let's better understand Django... -
Building Modern Applications with Django, Vue.js and Auth0: Part 2
This tutorial series are first created for Auth0 blog. Part 2 and 3 will be published in my blog with the permission from the Auth0. As of part 1 you can read it in the Auth0 blog once it's published. In this tutorial you will learn What is Webpack and why you should use it? The Webpack template used by the Vue CLI to generate Vue applications based on Webpack how to integrate Vue with Django so you can serve the front end application using Django instead of having complete separate front end and back end apps how to fix Hot Code Reloading when using Django to serve the Vue application how to update the Callback URL for Auth0 authentication Introduction to Webpack In this section we you briefly get introduced to Webpack (and why you should use Webpack?) Essentially webpack is a static module bundler for modern JavaScript applications which becomes a fundamental tool with the rise of modern JavaScript front end frameworks such as Angular, React and Vue. It also can be easily configured to bundle other assets such as HTML, CSS and images via loaders. It will help you reduce the number of requests and round trips … -
Building a Modern Web Application with Django REST Framework and Vue: Building Views and REST API
Throughout this part of these tutorial series you will continue developing a CRUD (Create, Read, Update and Delete) application with a restful API back-end and a Vue front-end using Django, Django REST framework and Vue (with Axios as an HTTP client). In this part you'll specifically build the REST API and the front-end views to consume and display data from the API endpoints. You will also see how to integrate your Vue application with your Django back-end in production. As always you can find the source code of the demo project in this Github repository. You can check the second article from this link Summary This article is composed of the following sections: Building the REST API: You will create a simple REST API around one model (Product) with DRF and learn how to add pagination to your APIs. Creating the Service to Consume the API: You will create the class that interfaces with your API using Axios. Creating the Front End Views: You will create different views and routes for the Vue application and see how you can protect some routes from non authenticated users. Getting Ready for Production: Finally you'll prepare your app for production by tweaking some … -
Building Modern Applications with Django, Vue.js and Auth0: Part 1
I originally created this tutorial series for Auth0 blog and are published here with the permission from the technical author at Auth0 Throughout this series, you'll be using Django, Django REST framework, and Vue.js to develop an application with a REST API back-end and a Vue.js front-end. The API will be consumed by the Vue.js front-end with the help of the Axios client library and JWT authentication will be handled by Auth0. You are going to start by installing all the project's requirements, then you will bootstrap the Django and the Vue.js sub-projects. You can find the final source code of the demo project that you will create in this GitHub repository. Summary This article is composed of the following sections: Introduction to Python and Django Introduction to Vue.js and Vue.js Features Bootstrapping the Back-End Project Bootstrapping the Front-End Project Introduction to JSON Web Tokens Integrating Django with Auth0 Integrating Auth0 with Vue.js Conclusion and Next Steps Introduction to Python and Django Python is a general-purpose programming language and it's among the most popular programming languages in the world. It's readable, efficient, and easy to learn. Python is also a portable language available for major operating systems such as Linux, … -
Building a Modern Web Application with Django REST Framework and Vue: Building Views and REST API
Throughout this part of these tutorial series you will continue developing a CRUD (Create, Read, Update and Delete) application with a restful API back-end and a Vue front-end using Django, Django REST framework and Vue (with Axios as an HTTP client). In this part you'll specifically build the REST API and the front-end views to consume and display data from the API endpoints. You will also see how to integrate your Vue application with your Django back-end in production. As always you can find the source code of the demo project in this Github repository. You can check the second article from this link Summary This article is composed of the following sections: Building the REST API: You will create a simple REST API around one model (Product) with DRF and learn how to add pagination to your APIs. Creating the Service to Consume the API: You will create the class that interfaces with your API using Axios. Creating the Front End Views: You will create different views and routes for the Vue application and see how you can protect some routes from non authenticated users. Getting Ready for Production: Finally you'll prepare your app for production by tweaking some … -
Django REST Framework Read & Write Serializers
Django REST Framework (DRF) is a terrific tool for creating very flexible REST APIs. It has a lot of built-in features like pagination, search, filters, throttling, and many other things developers usually don't like to worry about. And it also lets you easily customize everything so you can make your API work the way you want. There are many gene -
csso and django-pipeline
This is a quick-and-dirty how-to on how to use csso to handle the minification/compression of CSS in django-pipeline. First create a file called compressors.py somewhere in your project. Make it something like this: import subprocess from pipeline.compressors import CompressorBase from django.conf import settings class CSSOCompressor(CompressorBase): def compress_css(self, css): proc = subprocess.Popen( [ settings.PIPELINE['CSSO_BINARY'], '--restructure-off' ], stdin=subprocess.PIPE, stdout=subprocess.PIPE, ) css_out = proc.communicate( input=css.encode('utf-8') )[0].decode('utf-8') # was_size = len(css) # new_size = len(css_out) # print('FROM {} to {} Saved {} ({!r})'.format( # was_size, # new_size, # was_size - new_size, # css_out[:50] # )) return css_out In your settings.py where you configure django-pipeline make it something like this: PIPELINE = { 'STYLESHEETS': PIPELINE_CSS, 'JAVASCRIPT': PIPELINE_JS, # These two important lines. 'CSSO_BINARY': path('node_modules/.bin/csso'), # Adjust the dotted path name to where you put your compressors.py 'CSS_COMPRESSOR': 'peterbecom.compressors.CSSOCompressor', 'JS_COMPRESSOR': ... Next, install csso-cli in your project root (where you have the package.json). It's a bit confusing. The main package is called csso but to have a command line app you need to install csso-cli and when that's been installed you'll have a command line app called csso. $ yarn add csso-cli or $ npm i --save csso-cli Check that it installed: $ ./node_modules/.bin/csso --version 3.5.0 … -
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 …