Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Introducing time-machine, a new Python library for mocking the current time
Whilst writing Speed Up Your Django Tests, I wanted to add a section about mocking the current time. I knew of two libraries such mocking, but I found it hard to pick one to recommend due to the trade-offs in each. So I delayed adding that section and shaved a rather large yak by writing a third library. This post is my introduction to the problem, the trade-offs with the other libraries, and how my new library, time-machine, tries to solve them. The next version of Speed Up Your Django Tests can now include a section on mocking time. The Problem It’s especially common in web projects to have features that rely on changes to the current date and time. For example, you might have a feature where each customer may only make an order once per day. For testing such features, it’s often necessary to mock the functions that return the current date and time. In Python’s standard library, these live in the datetime and time modules. There are various ways of doing this mocking: it can be done generically with unittest.mock, or in a more targeted fashion with a time-mocking library. Using unittest.mock works, but it’s often inaccurate … -
Extracting values from environment variables in tox
[Tox](https://tox.readthedocs.io) is a great tool for automated testing. We use it, not only to run matrix testing, but to run different types of tests in different environments, enabling us to parallelise our test runs, and get better reporting about what types of tests failed. Recently, we started using [Robot Framework](https://robotframework.org) for some automated UI testing. This needs to run a django server, and almost certainly wants to run against a different database. This will require our `tox -e robot` to drop the database if it exists, and then create it. Because we use [dj-database-url](https://pypi.org/project/dj-database-url/) to provide our database settings, our [Codeship](https://codeship.com/) configuration contains an environment variable set to `DATABASE_URL`. This contains the host, port and database name, as well as the username/password if applicable. However, we don't have the database name (or port) directly available in their own environment variables. Instead, I wanted to extract these out of the `postgres://user:password@host:port/dbname` string. My tox environment also needed to ensure that a distinct database was used for robot: {% highlight text %} [testenv:robot] setenv= CELERY_ALWAYS_EAGER=True DATABASE_URL={env:DATABASE_URL}_robot PORT=55002 BROWSER=headlesschrome whitelist_externals= /bin/sh commands= sh -c 'dropdb --if-exists $(echo {env:DATABASE_URL} | cut -d "/" -f 4)' sh -c 'createdb $(echo {env:DATABASE_URL} | cut -d "/" … -
Improving Code Confidently with Test-Driven Development
Looks at an example of how Test-Driven Development improves code quality. -
Stop Using datetime.now!
One of my favorite job interview questions is this: Write a function that returns tomorrow's date This looks innocent enough for someone to suggest this as a solution: import datetime def tomorrow() -> datetime.date: return datetime.date.today() + datetime.timedelta(days=1) This will work, but there is a followup question: How would you test this function? Before you move on.... take a second to think about your answer. One of these pigeons is a mockPhoto by Pedro Figueras Table of Contents Naive Approach Dependency Injection Dependency Injection in The Wild Injecting Functions Injecting Values When to Instantiate Injected Values Dependency Injection in Practice IP Lookup Assigning Responsibility Using a Service Changing Implementations Typing Services Using a Protocol Nondeterminism and Side-Effects Conclusion Naive Approach The most naive approach to test a function that returns tomorrow's date is this: # Bad assert tomorrow() == datetime.date(2020, 4, 16) This test will pass today, but it will fail on any other day. Another way to test the function is this: # Bad assert tomorrow() == datetime.date.today() + datetime.timedelta(days=1) This will also work, but there is an inherent problem with this approach. The same way you can't define a word in the dictionary using itself, you should not … -
Django News - Issue 25 - May 29th 2020
News Pipenv new release A major new release for Pipenv, the first since 2018! pypa.io PSF on Twitter: "The deadline to sign up to vote in @ThePSF upcoming election is May 31 AOE. To vote you need to be a PSF fellow, contributing, supporting and/or managing member. Membership info can be found here: https://t.co/W2H2ShVTDr" The PSF's annual elections are this June. If you are not a member and want to be one, sign up before May 31 AOE to vote this year. twitter.com Articles A tour of Django server setups See what Django in production visually looks like with diagrams. mattsegal.dev Abusing the Django Admin app Ken Whitesell walks us through automatically registering all of the models in our app while providing a custom ModelAdmin class to make their display useful. This technique is useful when dealing with a large number of models or a legacy database when you don't want to create 200 ModelAdmins. dev.to Handling SEO with Wagtail CMS Adonis Simo walks us through how to make Wagtail more SEO friendly. adonissimo.com How to Get Hired as a Django Developer Practical advice on finding work as a professional Python/Django programmer. learndjango.com Waiting in asyncio While not directly written … -
Book Review: Speed Up Your Django Tests
-
Book Review: Speed Up Your Django Tests
-
Bread and Butter Django - Building SaaS #58
In this episode, I worked on a views and templates. There are a number of core pages that are required to flesh out the minimal interface for the app. We’re building them. I began by showing the page that we were going to work on. I outlined the changes I planned to make, then we started. The first thing we added was data about the school year, the main model on display in the page. -
Django and Robot Framework
One of my colleagues has spent a bunch of time investigating and then implementing some testing using [Robot Framework](https://robotframework.com). Whilst at times the command line feels like it was written by someone who hasn't used unix much, it's pretty powerful. There are also some nice tools, like several Google Chrome [plugins](https://chrome.google.com/webstore/detail/robotcorder/ifiilbfgcemdapeibjfohnfpfmfblmpd) [that](https://chrome.google.com/webstore/detail/chrome-robot/dihdbpkpgdkioobahfpnkondnekhbmlo) will record what you are doing and generate a script based upon that. There are also other tools to [help build testing scripts](https://chrome.google.com/webstore/detail/page-modeller-selenium-ro/ejgkdhekcepfgdghejpkmbfjgnioejak). There is also an existing [DjangoLibrary](https://pypi.org/project/robotframework-djangolibrary/) for integrating with [Django](https://www.djangoproject.com/). It's an interesting approach: you install some extra middlewary that allows you to perform requests directly to the server to create instances using [Factory Boy](https://factoryboy.readthedocs.io/), or fetch data from Querysets. However, it requires that the data is serialised before sending to the django server, and the same the other way. This means, for instance, that you cannot follow object references to get a related object without a bunch of legwork: usually you end up doing another `Query Set` query. There are some things in it that I do not like: * A new instance of the django `runserver` command is started for each Test Suite. In our case, this takes over 10 seconds to start … -
Django and Robot Framework
One of my colleagues has spent a bunch of time investigating and then implementing some testing using [Robot Framework](https://robotframework.org). Whilst at times the command line feels like it was written by someone who hasn't used unix much, it's pretty powerful. There are also some nice tools, like several Google Chrome [plugins](https://chrome.google.com/webstore/detail/robotcorder/ifiilbfgcemdapeibjfohnfpfmfblmpd) [that](https://chrome.google.com/webstore/detail/chrome-robot/dihdbpkpgdkioobahfpnkondnekhbmlo) will record what you are doing and generate a script based upon that. There are also other tools to [help build testing scripts](https://chrome.google.com/webstore/detail/page-modeller-selenium-ro/ejgkdhekcepfgdghejpkmbfjgnioejak). There is also an existing [DjangoLibrary](https://pypi.org/project/robotframework-djangolibrary/) for integrating with [Django](https://www.djangoproject.com/). It's an interesting approach: you install some extra middleware that allows you to perform requests directly to the server to create instances using [Factory Boy](https://factoryboy.readthedocs.io/), or fetch data from Querysets. However, it requires that the data is serialised before sending to the django server, and the same the other way. This means, for instance, that you cannot follow object references to get a related object without a bunch of legwork: usually you end up doing another `Query Set` query. There are some things in it that I do not like: * A new instance of the django `runserver` command is started for each Test Suite. In our case, this takes over 10 seconds to start … -
JWTs and AI - David Sanders
David Sanders personal sitedjango-rest-framework-simplejwtDjangoCon US 2014 - JSON Web TokensDjangoCon US 2018 - Finally Understand Authentication with Django REST FrameworkPlease Stop Using LocalStorageEthereumUnsupervisedAI Superpowers book -
Saving GeoPoints Using Django Form
A while ago I was working on a project where I had a map which was part of a simple form. User can select a point on the map and submit. Form’s responsibility was to get the submitted data, validate it and save into database if everything is fine. I was using MySQL with GIS support. During the development I faced a couple of issues that I’d be addressing here and how did I fix them. Let’s begin! Consider the below example from django.contrib.gis.db import models class Location(models.Model): coordinate = models.PointField(blank=True, null=True) # many more fields If you see the Django generated migration file for this model, you will notice that the default value of srid parameter is 4326 although we never provided that explicitly in the model definition. This is how migration will look like. operations = [ migrations.CreateModel( name='Location', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('coordinate', django.contrib.gis.db.models.fields.PointField(blank=True, null=True, srid=4326)), ], ), ] The default value of srid is being propagated from a base class BaseSpatialField, the PointField has been inherited from. We can always change this value as per requirements but in most cases default value would be sufficient. Let’s try to save some Geo coordinates through the … -
Debugging a Containerized Django App in VS Code
In this article, we'll show you how to configure Visual Studio Code (VS Code) to debug a Django app running inside of Docker. -
Creating a Kubernetes Cluster on DigitalOcean with Python and Fabric
This tutorial demonstrates how to automate the setup of a Kubernetes cluster with Python and Fabric on DigitalOcean. -
Django News - Virtual Meetups Galore - May 22nd 2020
News Test pip’s alpha resolver and help us document dependency conflicts – Bernard Tyers The pip team needs your help testing the dependency resolver. They specifically are looking for projects with complex dependencies which are prone to fail. If this sounds like you, please help them out. ei8fdb.org Admin accessibility - Google Groups Via Adam Johnson, "Interested in helping increase Django's accessibility? Chime in on this discussion started by Tom Carrick." google.com Articles Second-guessing the modern web A critical look at the SPA + API backend pattern currently en vogue. macwright.org Leverage the InnoDB architecture to optimize Django model design What every developer should know about InnoDB. medium.com Optimizing Django ORM Queries An under-the-hood look at Django's ORM. schegel.net The Fast Way to Test Django transaction.on_commit() Callbacks Performance tips on Django tests from Adam Johnson. adamj.eu Sponsored Link Two Scoops of Django 3.x: Best Practices for the Django Web Framework The long-awaited update covers various tips, tricks, patterns, code snippets, and techniques of Django best practices. feldroy.com Videos PyCon 2020 - Finite State Machine (FSM) in Django Calvin Hendryx-Parker on using django-fsm ti build quick, lightweight business workflows for Django applications. youtube.com PyCon 2020 - Big O No Chris Seto … -
Django Celery Tutorial Series
This Django Celery tutorial series teaches you how to use Celery with Django better. -
Django Celery Tutorial Series
This Django Celery tutorial series teaches you how to use Celery with Django better. -
Wagtail query for scheduled pages
Wagtail has "scheduled" pages that are not visible on the site. I think the interface is not ideal as you need to click the Publish button after setting a publication date on the Settings tab. I'm not sure how exactly the data models work, but the actual publication is handled by a management command and putting the publication date into the future after the post was published doesn't seem to unpublish it. I wanted to get a list of pages that were scheduled for publication, the query below might not handle all edge cases but shows how I got what I needed. Raw MyPageModel.objects.filter(go_live_at__isnull=False).not_live() -
Switch A Django Project To Use Pytest - Building SaaS #57
In this episode, I replaced the default Django test runner to use pytest. We walked through installation, configuration, how to change tests, and the benefits that come from using pytest. We started by looking at the current state of the test suite to provide a baseline to compare against. After that, I went to PyPI to find the version of pytest-django that we wanted to install. I added the package to my requirements-dev. -
Waiting in asyncio
One of the main appeals of using asyncio is being able to fire off many coroutines and run them concurrently. How many ways do you know for waiting for their results? -
Python at Microsoft- Nina Zakharenko
Nina’s website Learn Python FrontendMasters Course Goodbye Print Hello Debugger at DjangoCon US 2019 & PyCon2020 PythonTutor@nnja on Twitter Nina on Twitch Nina’s Frontend Masters author pageGetting Started with Python in VS CodeVS Code - Device Simulator Express ExtensionMicrosoft MakeCode - Block Based Programming for Hardware Emulator4 new *Python/Django video tutorials for productive cloud development -
De-Google my blog - How to blog in 2020 without Google
Hi everyone! Right now I have Google almost completely out of my life, but some of the top commentaries of my posts in /r/degoogle and /r/selfhosted were “Your blog still uses google for resources lol”, so I needed to change that. Shame. In my old blog, the features that used Google where: Disquss comments The Ghost theme Before we begin, I want to let you know that all these fixes have been applied, so you are currently experiencing the final result. Fixing comments I was using disquss to handle comments, since it is what everyone recommends. I checked the network resources on my site and found something horrible: A bunch of random calls to a bunch of external addresses, not just Google. Since I care about my reader’s privacy, disquss had to go. Someone in /r/degoogle suggested “Commento”, and it looked like it was exactly what I needed: A free and opensource, self-hosted alternative to disquss, and it also had an official docker release! According to their documentation: version: '3' services: server: image: registry.gitlab.com/commento/commento restart: always ports: - 5000:8080 environment: COMMENTO_ORIGIN: https://commento.rogs.me COMMENTO_PORT: 8080 COMMENTO_POSTGRES: postgres://postgres:mysupersecurepassword@db:5432/commento?sslmode=disable COMMENTO_SMTP_HOST: my-mail-host.com COMMENTO_SMTP_PORT: 587 COMMENTO_SMTP_USERNAME: mysmtpusername@mail.com COMMENTO_SMTP_PASSWORD: mysmtppassword COMMENTO_SMTP_FROM_ADDRESS: mysmtpfromaddress@mail.com depends_on: - db db: … -
De-Google my blog - How to blog in 2020 without Google
Hi everyone! Right now I have Google almost completely out of my life, but some of the top commentaries of my posts in /r/degoogle and /r/selfhosted were “Your blog still uses google for resources lol”, so I needed to change that. Shame. In my old blog, the features that used Google where: Disquss comments The Ghost theme Before we begin, I want to let you know that all these fixes have been applied, so you are currently experiencing the final result. Fixing comments I was using disquss to handle comments, since it is what everyone recommends. I checked the network resources on my site and found something horrible: A bunch of random calls to a bunch of external addresses, not just Google. Since I care about my reader’s privacy, disquss had to go. Someone in /r/degoogle suggested “Commento”, and it looked like it was exactly what I needed: A free and opensource, self-hosted alternative to disquss, and it also had an official docker release! According to their documentation: version: '3' services: server: image: registry.gitlab.com/commento/commento restart: always ports: - 5000:8080 environment: COMMENTO_ORIGIN: https://commento.rogs.me COMMENTO_PORT: 8080 COMMENTO_POSTGRES: postgres://postgres:mysupersecurepassword@db:5432/commento?sslmode=disable COMMENTO_SMTP_HOST: my-mail-host.com COMMENTO_SMTP_PORT: 587 COMMENTO_SMTP_USERNAME: mysmtpusername@mail.com COMMENTO_SMTP_PASSWORD: mysmtppassword COMMENTO_SMTP_FROM_ADDRESS: mysmtpfromaddress@mail.com depends_on: - db db: … -
How to auto-reload Celery worker on Code Change
In this Django Celery tutorial, I would talk about how to auto-reload Celery worker on code change. -
How to auto-reload Celery worker on Code Change
In this Django Celery tutorial, I would talk about how to auto-reload Celery worker on code change.