From the course: Secure Coding in Python

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Using a separate Python environment for isolation

Using a separate Python environment for isolation - Python Tutorial

From the course: Secure Coding in Python

Start my 1-month free trial

Using a separate Python environment for isolation

- [Instructor] At the time of this recording, Django is one of the most popular web development framework for Python. It's trusted by the likes of NASA, Instagram, and Mozilla, just to name a few, and for a good reason. Django allows for very rapid development with very few compromises. It's very flexible and fully featured. When it comes to security, out of the box you get some great sensible defaults. You get great middleware to prevent cross-site request forgery, to handle sessions, to prevent clickjacking, just to name a few. You also get a very robust user handling system that implementing yourself would take a very long time. But before we get started looking at these features, let's make sure that our environment is ready to go. So I'm going to head over to my Exercise Files to 03, and I'm going to do pipenv install in order to set up an environment here. And this environment will have the needed dependencies for…

Contents