Deploy Django 4.0 on Shared Hosting

In this post, I will present a step by step procedure to deploy a Django project to shared hosting. This is one of the options that you can avail to deploy your Django project. The advantage of shared hosting is that it is cheap. The disadvantage is that you might not be able to deploy … Read more Deploy Django 4.0 on Shared Hosting

Upload a Pycharm project to Github (Step by Step)

In this post, I am going to share a very simple method to share your Pycharm project to github. Upload a Project to Github Open your project in Pycharm and select VCS > Import into Version Control > Create Git Repository Keep the default directory (your project path) and click OK Now select VCS > … Read more Upload a Pycharm project to Github (Step by Step)

Print Table on console in Python

Displaying your data on the console in the form of a formatted table can be useful in many cases. It makes it easy to look at the data. In this post, I will discuss different modules that can help you accomplish the job. PrettyTable Installation Documentation https://ptable.readthedocs.io/en/latest/tutorial.html Usage Import PrettyTable from the prettytable module and … Read more Print Table on console in Python