Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please type your username.

Please type your E-Mail.

Please choose an appropriate title for the post.

Please choose the appropriate section so your post can be easily searched.

Please choose suitable Keywords Ex: post, video.

Browse

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • About Us
  • Contact Us
Home/ Questions/Q 7283

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Latest Questions

Author
  • 60k
Author
Asked: November 28, 20242024-11-28T02:22:09+00:00 2024-11-28T02:22:09+00:00

QR code generator in Django

  • 60k

Creating virtual environment

python3.10 -m venv . 
Enter fullscreen mode Exit fullscreen mode

Activate environment

source bin/activate 
Enter fullscreen mode Exit fullscreen mode

Install Django, Pillow, and qrcode

pip install Django Pillow qrcode 
Enter fullscreen mode Exit fullscreen mode

Start Django project

django-admin startproject core . 
Enter fullscreen mode Exit fullscreen mode

Create App

python manage.py startapp qrcodeapp 
Enter fullscreen mode Exit fullscreen mode

Open the settings.py file and add the created app to the installed apps.

# settings.py  INSTALLED_APPS = [     'django.contrib.admin',     'django.contrib.auth',     'django.contrib.contenttypes',     'django.contrib.sessions',     'django.contrib.messages',     'django.contrib.staticfiles',      'qrcodeapp', # add qrcodeapp app ] 
Enter fullscreen mode Exit fullscreen mode

Create a media directory to save all generated QR code images. This media directory should be created in the root directory.

Now in settings.py file specify your media directory like the following.

# settings.py  MEDIA_URL = '/media/' MEDIA_ROOT = BASE_DIR / 'media' 
Enter fullscreen mode Exit fullscreen mode

Now open views.py of qrcodeapp to write the logic to generate a QR code and then we render it on the template.

# qrcodeapp/views.py  from django.shortcuts import render from django.conf import settings from qrcode import * import time  def qr_gen(request):     if request.method == 'POST':         data = request.POST['data']         img = make(data)         img_name = 'qr' + str(time.time()) + '.png'         img.save(settings.MEDIA_ROOT + '/' + img_name)         return render(request, 'index.html', {'img_name': img_name})     return render(request, 'index.html') 
Enter fullscreen mode Exit fullscreen mode

Create a templates directory in the root directory and specify the path in settings.py like the following.

# settings.py  TEMPLATES = [     {         'BACKEND': 'django.template.backends.django.DjangoTemplates',         'DIRS': [ BASE_DIR / 'templates' ], # this         'APP_DIRS': True,         'OPTIONS': {             'context_processors': [                 'django.template.context_processors.debug',                 'django.template.context_processors.request',                 'django.contrib.auth.context_processors.auth',                 'django.contrib.messages.context_processors.messages',             ],         },     }, ] 
Enter fullscreen mode Exit fullscreen mode

Open index.html and add following code

<!-- templates/index.html -->  <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>QR code generator</title>      <style>         *{             box-sizing: border-box;             font-family: sans-serif;         }         main{             width: 100%;             max-width: 600px;             margin: 0 auto;         }          input{             width: 100%;             padding: 10px;             margin-bottom: 10px;             border: 1px solid #ccc;             border-radius: 4px;         }          button{             width: 100%;             max-width: 200px;             padding: 10px;             margin-bottom: 10px;             border: 1px solid #ccc;             border-radius: 4px;             background-color: #eee;          }          button:hover{             background-color: #ddd;         }          .qr-img{             width: 100%;             max-width: 300px;             margin: 0 auto;         }          .qr-img img{             width: 100%;         }     </style> </head> <body>     <main>         <h1>             QR code generator         </h1>         <form method="post">             {% csrf_token %}             <input type="text" name="data" id="data" placeholder="write something or enter url">             <button>Generate</button>         </form>          <div class="qr-img">             {% if img_name %}                 <img src="/media/{{ img_name }}" alt="qr code">             {% endif %}         </div>     </main> </body> </html> 
Enter fullscreen mode Exit fullscreen mode

Create new urls.py file in qrcodeapp directory and add following code

# qrcodeapp/urls.py  from django.urls import path from . import views  urlpatterns = [     path('', views.qr_gen, name='qr_gen'), ] 
Enter fullscreen mode Exit fullscreen mode

Now include this path on main project’s urls.py.

# core/urls.py  from django.contrib import admin from django.urls import path, include from django.conf import settings from django.conf.urls.static import static  urlpatterns = [     path('admin/', admin.site.urls),     path('', include('qrcodeapp.urls')), ]  if settings.DEBUG:     urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) 
Enter fullscreen mode Exit fullscreen mode

Now everythig is done, run the server using following command. You must on your environment ok.

python manage.py runserver 
Enter fullscreen mode Exit fullscreen mode

Now just open http://127.0.0.1:8000 on browser, enter something and generate your qr code.

qr code generator in django

Thank you 🙂

Source code: GitHub

Find me on Twitter: awwarpit

djangopythontutorialwebdev
  • 0 0 Answers
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question

Stats

  • Questions 4k
  • Answers 0
  • Best Answers 0
  • Users 1k
  • Popular
  • Answers
  • Author

    How to ensure that all the routes on my Symfony ...

    • 0 Answers
  • Author

    Insights into Forms in Flask

    • 0 Answers
  • Author

    Kick Start Your Next Project With Holo Theme

    • 0 Answers

Top Members

Samantha Carter

Samantha Carter

  • 0 Questions
  • 20 Points
Begginer
Ella Lewis

Ella Lewis

  • 0 Questions
  • 20 Points
Begginer
Isaac Anderson

Isaac Anderson

  • 0 Questions
  • 20 Points
Begginer

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Footer

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore, ask, and connect. Join our vibrant Q&A community today!

About Us

  • About Us
  • Contact Us
  • All Users

Legal Stuff

  • Terms of Use
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

Follow

© 2022 Querify Question. All Rights Reserved

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.