django-utils-six

2.0 · maintenance · verified Thu Apr 16

django-utils-six is a Python library (version 2.0) designed to provide forward compatibility for `django.utils.six` in Django 3.0 and later versions. `django.utils.six` was a Python 2/3 compatibility module bundled with Django, but it was removed in Django 3.0. This library fills that gap, allowing older third-party applications that still depend on `from django.utils import six` to function correctly without modification in Django 3+ environments. It is a niche compatibility layer with infrequent releases.

Common errors

Warnings

Install

Imports

Quickstart

Install django-utils-six. This package automatically makes `django.utils.six` available, allowing third-party libraries that rely on this deprecated import to function on Django 3+ without modification. There is no typical direct code usage; its primary role is passive compatibility.

pip install django-utils-six

view raw JSON →