58 followers
A unique blend of social work graduate and self-taught programmer. I wish to empower and support all who are trying to learn to code, especially women. Fan of Python and good friend with CSS.
Intro Django templating language (Django's default out-of-the-box templating language) comes with dozens of tags that make your template powerful and allows you to do many many things. Tags provide arbitrary logic in the rendering process and they ar...
What is list comprehension List comprehension is a concise way used instead of for-loop when you want to create a new list based on another iterable (list, tuple, dictionary, set, string, generator, ...). You get to do this: [do_this(element) for ele...
This is the second part of Fluent in Django series. We're going to upgrade the code we created in Part 1. You can find the finished code from the first part here. Prerequisites Python Basics of Django (Creating a project, Model, View, Templates, Fo...
You're thinking about switching your career and become a programmer, but you have no idea where to start? Are all the buzzwords confusing and you don't know who to ask? Look no more, here's the post to help. A lot of information is gathered here. Don...
Intro Knowing a language will only get you so far. If you have to build everything by yourself, you'll never get things done before the deadline. After you learned a programming language, it's smart to add a framework to your arsenal. Django is the m...
Requirements Basic knowledge of Python Basic understanding of Django framework REST API Rest API is a term concatenated from 2 abbreviations. REST stands for REpresentational State Transfer API stands for Application Programming Interface REST is...