S Vijay Balaji has Published 37 Articles

How to Build your own website using Django in Python

S Vijay Balaji

S Vijay Balaji

Updated on 11-Feb-2021 06:32:31

7K+ Views

IntroductionDjango is a Python web framework that is both free and open source.Why Use Django?It’s very fast.Comes with a lot of pre-existing features like user authentication, site maps, RSS feeds.It is very secure and prevents a lot of security mistakes like SQL Injection, cross−site scripting, clickjacking etc.It is very scalable ... Read More

How to build your own Sqlite database in Python

S Vijay Balaji

S Vijay Balaji

Updated on 11-Feb-2021 06:29:59

545 Views

IntroductionBeing a programmer it is essential to learn to use databases in our applications to store, retrieve, manipulate, and delete data with ease. Python comes with the SQLite package preinstalled with it, using which we can create and manipulate SQLite databases.SQLite databases are written in a single file and are ... Read More

How to build a simple GUI calculator using tkinter in Python

S Vijay Balaji

S Vijay Balaji

Updated on 11-Feb-2021 06:27:57

592 Views

IntroductionIn Python, we use the tkinter library to create GUI components and craft better user interface.In this article you will learn methods to build a simple GUI based calculator application.Getting startedBefore we jump into it, there are a few things we need to get organised first.Let us start by downloading ... Read More

How to access and convert time using the time library in Python

S Vijay Balaji

S Vijay Balaji

Updated on 11-Feb-2021 06:19:16

315 Views

IntroductionThe time library in Python is used to obtain time in the real world and perform various tasks related to it. You can even manipulate execution time using this module.Getting StartedThe time module comes packaged with Python. This means you do not have to install it separately using the PIP ... Read More

Documentation generation using the pydoc module in Python

S Vijay Balaji

S Vijay Balaji

Updated on 11-Feb-2021 05:53:24

6K+ Views

IntroductionThe pydoc module automatically generates documentation from Python modules. The documentation can be saved as pages of text on the console, displayed on the web browser, or even as HTML files.In this article you will be learning methods to view these documentations in various cases and even learn about docstrings ... Read More

Copy and paste to your clipboard using the pyperclip module in Python

S Vijay Balaji

S Vijay Balaji

Updated on 11-Feb-2021 05:50:08

2K+ Views

IntroductionWe will be using the pyperclip module in order to copy and paste content to the clipboard. It is cross−platform and works on both Python 2 and Python 3.Copying and pasting from and to the clipboard could be very useful when you want the output of the data to be ... Read More

Accessing the internet using the urllib.request module in Python

S Vijay Balaji

S Vijay Balaji

Updated on 11-Feb-2021 05:46:33

380 Views

IntroductionWe use the urllib.request module in Python to access and open URLs, which most often use the HTTP protocol.The interface used is also very simple for beginners to use and learn; it uses the urlopen function which can fetch various URLs using a variety of different protocols.You will get a ... Read More

Advertisements