Blog

Linux GNU Screen

Have you at any point confronted the circumstance where you play out a long-running assignment on a remote machine, and unexpectedly your association drops, the SSH meeting is ended, and your work is lost. All things considered, it has happened to us all sooner or later, hasn’t it? Fortunately, there is a utility called screen […]

Setup Crontab in Django Project

The crontab could be a list of commands simply need to run on a regular schedule, and also the name of the command used to manage that list. cron is the system process which will automatically perform tasks for you according to a set schedule. The schedule is called the crontab, which is also the name of the program used to edit […]

Upload image into custom folder in Django

Today we are going to upload image using django model. We’re going to create a small project where we can implement Django’s file upload, save and view functions, with a database but where the images will be stored on a hard drive. We assuming that you already configured your project. If you want to know […]

Python Virtual Environments and Packages

Packages and modules that aren’t included in the standard library are frequently used in Python applications. Applications may require a specific version of a library because the application requires the fix of a specific issue or because the application was created using an obsolete version of the library’s interface. This means that a single Python […]

Setup Your First Django Project

Today we are going to create our first django project. We’ll assume you have Python Installed already. If not, you can see our this post Python Installation . The venv module provides support for creating lightweight “virtual environments” with their own site directories, optionally isolated from system site directories. Each virtual environment has its own Python binary […]

Downloading and Installing Python

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Before you start, you will need Python […]

Scroll to top