Online Shop With Django Part I

We will learn how to create a web application for online shopping.
In this first part we will do basic installation. Then create models for product and catalog. Then register the models to admin site. After the we will build views and templates. At the end of this part we will add css.

Blog for Poems in Django Part III

In this blog post, we will learn how to create tags for a post using django-taggit. Then we will learn to retrieve posts by similarity.We will also learn to generate latest posts and most commented posts. At the end we will learn to use markdown in Django.

Blog for Poems in Django Part II

In this post we will learn to get the url of the page using reverse(). Then we will also look at how to create customized urls according to the date and slug of the post. After that we will learn to add pagination and use the class based views. Finally, we will create a comment system, so that one can post the comments and see previous comments.

Django Image Processing Webapp Part III

In this part, we finally create three modules for image processing. We also add method to handle all the image processing functions for our ImangEnhance class. Finally, we process our images according to the filter (process) selected by the user.

Django Image Processing Webapp

We are going to build an Django Image Processing Webapp. Here user can upload an image and apply several filters to the image.

In the first part we will learn, how to create a model for image. Then we will create a form to upload an image based on the model created. We will add two functionalities: Rotate and Transpose.

Introduction To Python Games

This is an introduction to Python Games with Pygame.

Introducing basic of Pygame library.
Here we will look how to draw basic geometrical objects, how to animate and how to control the pygame objects with our keyboard and mouse.

Django News App Part IV

In this tutorial we will limit access to articles list page to only logged-in users and add additional restrictions so that only the author of an article can edit or delete it. Users will also be able to add comments to any existing article.

Django News App Part II

In part I of Django News App, we displayed our homepage by including view logic in our urls.py file. Here we will create a dedicated pages app for all our static pages, such as homepage. This will keep our code nice and organized. We will also add password and password functionality to complete the authorization flow of our Newspaper app. Initially we will implement Django’s builtin views and URLs for password change and password reset before customizing them with our own Bootstrap powered templates and email service.

Django News App Part I

Part one of making news application in Django. Here we go through initial setup which includes creating virtual environment, creating repository in Github, installing Django and creating basic app. This is followed by creating sign up, login and log out for users. Finally we test our code.

Blog App in Django Part II

In Blog App in Django Part I user can only create, edit or delete blogs through admin panel. In this tutorial, we will add functionalities and pages so that user can create, edit and delete blog posts without using Django admin panel. We will add codes to previous project.