Skip to main content

Create a URL Shortener app with Python and Django Easily. Part-1

Create a URL Shortener app with Django 

Part 1. How to set up and activate the virtual environment & installing Django.








As promised in the previous post (How to generate a random string with Python.), I am starting a post series on creating a URL Shortener app with Django and Python.


Photo by LinkedIn Sales Solutions on Unsplash


Getting Started


INFO: I am using GitBash CLI and if anyone uses it please download and install it following the link below. https://gitforwindows.org/


First, we have to create a virtual environment so that we can isolate our project. Even if there are too many ways to do it,  I am going to use virtualenv to do it.

To create a virtual environment, follow the instructions below.

1. Create a new folder.

To make things easier, we are going to create a new folder to store our project. You can create a folder using the GitBash





2. Activate the Virtulenv.


To create a virtual environment, navigate to the folder you created and open the GitBash terminal.
And run the command below.



command explanation

  1.  cd projects:  navigate to the folder we created (projects)
  2.  virtualenv env: to create the virtual environment. env is going to be the name of the environment we going to create and you can use any name you want instead of env


To activate the environment created, we have to run the following line.




Warning: If you use the windows command prompt, this won't work for you. Installing GitBash will solve the problems and if you don't like to install it you have to find the appropriate command for the windows whenever you run a command.

This will activate the  virtual env

To install Django you can simply use the PIP. If you don't know how to install PIP please read this post: How to install PIP on Windows easily.




This will install the latest version of Django and all its dependencies.





That's it and now we are ready to start our journey. Stay tuned for the other parts of the series.



Comments

Trending Now

Find the Resultant vector of two Vectors With PYTHON!!

NEW ARTICLE:  How to Find the resultant of multiple vectors with Python! Using Python We can do many complex calculations. I learned how to calculate Resultant Vector using a formula with its size and direction in my Physics class. Then, I simply developed a CLI software to calculate the resultant of given two vectors Hope you like it :>) Follow me... Step :1 You need to install python on your computer. No matter what the operating system is you can find the ideal version of python from the official website of Python org And you will need a code editor like VS code and can download it with a simple Google search. (Hope you hate the first step Haha ) Step 2: we use the math module to calculate our resultant vector. The method I used as follows math.radians() : converts degrees to radians math.degrees() : converts radians to degrees math.sqrt()  : find the square root of a number math.atan() :find the tan inverse Step 3: the formula I used to calculate the size of the resultant is as

How to send and receive discord messages with your bot in 2023.

Hello everyone. Welcome back to the Blog of Chamodh today I will show you how to send and receive discord messages with your bot. Before getting started, I remind you that this is the second episode of the series How to make Discord bot in 2023 and if you haven't read the previous one, please read that first as I explain how to create your bot application and add it to a server there. READ:  https://blogofchamodh.blogspot.com/2023/02/how-to-make-your-own-discord-bot-2023.html We don't gonna use virtual environments, IDEs, or any other utility because we can use Replit for our coding purposes.  Let's Get Started. STEP1: Set up Replit It is really simple. Just go to  https://replit.com/~ and sign up if you have never used its service before and create a new Repl. I don't hope to guide you in this as this is an intermediate tutorial. Make sure to select Python as you create the new Repl because we are going to use Python for our back end. STEP 2: Get your token. To run ou