From the course: Secure Coding in Python

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

Using a separate Python environment for isolation

Using a separate Python environment for isolation - Python Tutorial

From the course: Secure Coding in Python

Using a separate Python environment for isolation

In this chapter, we'll be looking at how to secure Django web applications. Now, while other frameworks have picked up popularity throughout the years, Django is still extremely popular. Django is trusted by the likes of NASA, Instagram, and Mozilla, among other very popular applications. Django is great, because it includes a lot out of the box, and it allows developers to develop applications quickly without making too many sacrifices when it comes to making robust applications. So let's go ahead and install what we need to work in this chapter. So I'll head over to my Codespace and I'll type in pipenv install djangorestframework. And I always want to make sure that I get the spelling right. Djangorestframework will allow us to rapidly develop REST APIs using Django. It's a very commonly used third party framework. Next, I want to go ahead and install Markdown. So pipenv install markdown. And finally, the Django filters. So pipenv install django-filter. Now, if we have multiple…

Contents