Hardik Rana

Intersted in Machine learning and artificial intelligence.Exploring various fields of computer science like web development,Android development

Django’s comments framework – Free Django Tutorials

Django have a simple and customizable comments framework for it’s users.We can attach comments to any model using this built-in comments framework in django.For example we can use it for comments on any blog or photos. You can follow these steps,if you want to get started with comments app: You can first install the comments …

Django’s comments framework – Free Django Tutorials Read More »

Sessions In Django-Free Django Tutorials

For anonymous sessions,django provides full support.On the per-site-visitor basis,django session framework will allow you to store and retrieve arbitrary data.The django session framework will stores the data on the server side and will abstracts the sending and receiving of cookies. Cookies will use the data itself,instead of a session ID. Enabling sessions In django with …

Sessions In Django-Free Django Tutorials Read More »