Skip to content

lazycoder-hub/Django-Projects

Repository files navigation

Django Projects

Projects developed on Django framework of Python
Project Page   ·   Report Bug   ·   Request Feature

Table of contents

Synopsis

In this repository I will share code for few projects which I have developed on Django Framework. Some of the projects that I will be working on are as mentioned below:

Tools

  • Visual Studio Codes
  • Terminal (mac)

Skills

Skill I will be using in these projects:

  • Python
  • Python - PANDAS
  • Python - BEAUTIFULSOUP
  • Djnago
  • HTML
  • Javascript
  • Bootstrap
  • MySQL/SQLite

Pre-requisites/Installation

We need to install a few software in our system before we can work with Django. I have used a mac terminal for installing these tools.

  • Python: In order to check if python is installed on your system, enter the below code in the terminal(for mac user) or command prompt (for windows users). It will give you the latest version of the python your system has or will throw an error.

    python --version

    • If you dont have Python then you can install the same from here
  • Virtual Enviornment: We always try to use a virtual environment in order to use Django as Django is dependent on python version. This will isolate our Python/Django setup on a per-project basis. This means that any changes you make to one website won't affect any others you're also developing. The below code will create a virtual environment by the name 'myenv'.

    pip install virtualenv myvenv

  • Upgrading Pip: It is also recommended to upgrade pip fo the virtual environment we have created.

    pip install -upgrade pip

  • Django - Now we are ready to install Django in our virtual environment. Buts just before the installation of virtual environment, we need to activate it.

    source myvenv/bin/activate

    Now we will install Django:

    pip3 install django

  • MySQL: MySQL is an optional one as it is used for the database. Django comes with a default SQLite database to work with. If there is a need to use MySQL instead of a database, then we can install it using the below code:

    pip3 install mysqlclient

Contributing / Reporting issues

Contributions, issues and feature request are welcome

Please feel free to check issue page

Show Your Support

Please give this project a ⭐ if you liked this project.

About Me

Electrical and Instrumentation Engineer by eductaion and Software Engineer by profession. I am a self-taught coder who has worked on languages like, HTML, Javascript, PHP, Asp.net, and Python. After working for years in a couple of IT companies (One of which was India's best IT Company - WIPRO), I took a break off for the IT World for 4 years to take care of Family Business. During these 4 years, I built an ERP with Billing Software for my own company from scratch on the asp.net platform. Now that I have sold my family business, looking to re-start my IT career as a Python Developer.

Siddhant Shah - Software Engineer

GitHub    Website    Mail Me    My Resume

About

Projects based on Django

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published