Django 3 Cheat Sheet
If you are already convinced to use Python 3 then you can directly jump to the section “Python 2 vs Python 3” for the cheatsheet
There is an intense debate whenever Python 3 is mentioned. Some think it is an unnecessary shift and Python 2 series should be continued. However, I chose Python 3 for my book because I strongly believe that it is the future of the language. Besides, the divide might not be as large you think.
Python 3 Cheat Sheet for beginners to cover complete Python Core including basic to advanced topics. Download PDF for python cheatsheet with examples. Cheat Sheets Django. Django Cheat Sheet. Kuncen October 27, 2020. PHP Referencesidebar. Kuncen October 26, 2020. Data Visualization using Python.
Why Python 3?
Think of your favourite programming language and what you love about it. Now think of things that you don’t like about it or wish was improved. Sometimes these improvements might break older codebases but you badly want them.
Now imagine if the creator of the language takes upon himself/herself to revamp the language and rid of its warts. This is what actually led to Python 3 - Guido led the efforts to clean-up some fundamental design flaws with the 2.x series based on over fifteen years of experience developing a successful language.
While the development of Python 3 started in 2006, its first release, Python 3.0, was on December 3, 2008. The main reasons for a backwards incompatible version were – switching to Unicode for all strings, increased use of iterators, cleanup of deprecated features like old-style classes and some new syntactic additions like the nonlocal
statement.
Python 2.7 development was supposed to end in 2015 but was extended for five more years through 2020. There will not be a Python 2.8. Soon all major Linux distributions would have completely switched to using Python 3 as a default. Many PaaS providers like Heroku already support Python 3.4.
Python 2 and Python 3 have been in parallel development by the core development team for a number of years. Eventually, Python 3 is expected to be the future of the language.
Porting Django
The reaction to Python 3 in the Django community was rather mixed. Even though the language changes between version 2 and 3 were small (and over time, reduced), porting the entire Django codebase was a significant migration effort.
Django has been supporting Python 3 since version 1.5. In fact, the strategy was to rewrite the code into Python 3 and deal with Python 2 as a backward compatibility requirement.
Most of the packages listed in the Python 3 Wall of Superpowers have turned green (indicating they have support for Python 3). Almost all the red ones have an actively developed Python 3 port. Also worth noting is the Django Wall of Superpowers with over 67% of the top 200 Django packages having a Python 3 port.
Python 3 Advantage
Many newcomers to Django wonder whether to start using Python 2 or 3. I recommend starting with Python 3 for the following reasons:
Better syntax: It fixes a lot of ugly syntax like
izip
,xrange
and__unicode__
with the cleaner and more straightforwardzip
,range
and__str__
.Sufficient third-party support: Of the top 200 third party libraries, more than 80% have Python 3 support.
No legacy code: Since they are creating a new project rather than dealing with legacy code which needs to support an older version.
Default in Modern Platforms: It is already the default Python interpreter in Arch Linux. Ubuntu and Fedora plan to complete the switch in a future release.
It is easy: From a Django development point of view, there are so few changes that it can be learnt in a few minutes. Usb driver updates for mac.
The last point is important. Even if you know Python 2, you can pick up Python 3 in a short time.
Python 2 vs Python 3
This section covers the most important changes in Python 3 from a Django developer’s perspective. To understand the full list of changes, please refer to the recommended reading section in the end.
The examples are given in both Python 2 and Python 3. Depending on your installation, all Python 3 commands might need to be changed from python
to python3
or python3.4
to invoke the interpreter.
Change all __unicode__ methods into __str__
In Python 3, the __str__()
method is called for string representation of your models rather than the awkward sounding __unicode__()
method. This is one of the most evident ways to identify Python 3 ported code.
Python 2 | Python 3 |
---|
This reflects the difference in the way Python 3 treats strings. In Python 2, the human readable representation of a class could be returned by __str__()
(bytes) or __unicode__()
(text). However, in Python 3 the readable representation is simply returned by __str__()
(text).
All Classes Inherit from object
Python 2 has two kinds of classes – old-style (classic) and new-style. New-style classes are classes which directly or indirectly inherit from object
. Only new style classes can use Python’s advanced features like slots, descriptors and properties. Many of these are used by Django. However, classes were still old-style by default for compatibility reasons.
In Python 3, the old-style classes don’t exist anymore. As seen below, even if you don’t explicitly mention any parent classes the object
class will be present as a base. So, all classes are new-style.
Python 2 | Python 3 |
---|
Calling super() is Easier
The simpler call to super()
, without any arguments, will save you some typing in Python 3.
Python 2 | Python 3 |
---|
Specifying the class name and instance is optional, thereby making your code DRY and less prone to errors while refactoring.
Relative Imports Must be Explicit
Imagine the following directory structure for a package named app1
:
Now, in Python 3, let us run the following in the parent directory of app1
:
Successfully import-ed
Within a package, you should use explicit relative imports while referring to a sibling module. You can omit __init__.py
in Python 3, though it is commonly used to identify a package.
In Python 2, you could use import models
to successfully import models.py
module. But it was ambiguous and could accidentally import any other models.py
in your Python path. Hence this is forbidden in Python 3 and discouraged in Python 2 as well. Use from . import models
instead.
HttpRequest and HttpResponse have str and bytes Types
In Python 3, according to PEP 3333 (amendments to the WSGI standard), we are careful not to mix data coming from or leaving via HTTP, which will be in bytes; as opposed to text within the framework, which will be native (Unicode) strings.
Essentially, for HttpRequest
and HttpResponse
objects:
- Headers will be always str objects
- Input and output streams will be always byte objects
Unlike Python 2, the string and bytes are not implicitly converted while performing comparisons or concatenations with each other. Strings mean Unicode strings only.
Exception Syntax Changes and Improvements
Exception handling syntax and functionality has been significantly improved in Python 3.
In Python 3, you cannot use the comma separated syntax for the except clause. Is the dayz standalone for mac. Use the as
keyword instead:
Python 2 | Python 3 |
---|
The new syntax is recommended for Python 2 as well.
In Python 3, all exceptions must be derived (directly or indirectly) from BaseException
. In practice, you would create your custom exceptions by deriving from the Exception
class.
As a major improvement in error reporting, if an exception occurs while handling an exception then the entire chain of exceptions are reported:
Python 2 | Python 3 |
---|
Once you get used to this feature, you will definitely miss it in Python 2.
Standard Library Reorganized
The core developers have cleaned-up and better organized the Python standard library. For instance SimpleHTTPServer
now lives in the http.server
module:
Django Cheat Sheet Pdf
Django 3 Cheat Sheet Pdf
Python 2 | Python 3 |
---|
New Goodies
Python 3 is not just about language fixes. It is also where bleeding-edge Python development happens. This means improvements to the language in terms of syntax, performance and built-in functionality.
Some of the notable new modules added to Python 3 are:
asyncio
: Asynchronous I/O, event loop, coroutines and tasksunittest.mock
: Mock object library for testingpathlib
: Object-oriented filesystem pathsstatistics
: Mathematical statistics functions
Even if some of these modules might have backports to Python 2, it is more appealing to migrate to Python 3 and leverage them as built-in modules.
Pyvenv and Pip are Built-in
Most serious Python developers prefer to use virtual environments. virtualenv is quite popular to isolate your project setup from the system-wide Python installation. Thankfully, Python 3.3 is integrated with a similar functionality using the venv
module.
Django 3 Pdf
Since Python 3.4, a fresh virtual environment will be pre-installed with pip, a popular installer:
Notice that the command prompt changes to indicate that your virtual environment has been activated.
Other Changes
We cannot possibly fit all the Python 3 changes and improvements in this post. But the other commonly cited changes are:
- print is now a function : Previously it was a statement i.e. arguments were not in parenthesis.
- Integers don’t overflow :
sys.maxint
is outdated, integers will have unlimited precision. - Inequality operator
<>
is removed : Use!=
instead. - True Integer Division : In Python 2,
3 / 2
would evaluate to 1. It will be correctly evaluated to1.5
in Python 3. - Use
range
instead ofxrange
:range()
will now return iterators asxrange()
used to work before. - Dictionary keys are views :
dict
anddict
-like classes (likeQueryDict
) will return iterators instead of lists forkeys()
,items()
andvalues()
method calls.
This article is an excerpt from the book 'Django Design Patterns and Best Practices' by Arun Ravindran
Further Information
- Read What’s New In Python 3.0 by Guido https://docs.python.org/3/whatsnew/3.0.html
- To find what is new in each release of Python, read _What’s New in Python_https://docs.python.org/3/whatsnew/
- For richly detailed answers about Python 3 read Python 3 Q & A by Nick Coghlan http://python-notes.curiousefficiency.org/en/latest/python3/questions_and_answers.html