A simple Django app to create QR images in template
Project description
=====
Django QR Code
=====
Is a package
Quick start
-----------
1. Add "django_qr_code" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
...
'django_qr_creator',
]
2. Include the django_qr_code URLconf in your project urls.py like this::
path('image/', include('django_qr_creator.urls')),
3. Run `python manage.py migrate` to create the polls models.
4. Start the development server and visit http://127.0.0.1:8000/admin/
to create a poll (you'll need the Admin app enabled).
5. Visit http://127.0.0.1:8000/image/data/qr.png to participate in the django_qr_code.
Tested in python 3.6 with Django 2.0
Example of use in a template
----------------------------
```html
{% load django_qr_creator %}
```
Load this tags in you html template
```html
{% qr url='google.com' %}
```
For QR URL
```html
{% qr tel='+56948161822' %}
```
For QR Tel
```html
{% qr email='test@test.test' %}
```
For QR Mail
```html
{% qr location='40.7127753,-74.0059728' altitude='15' %}
```
For QR Location
```html
{% qr sms='+56948161822' message='this is a test' %}
```
For QR SMS
Example in view
---------------
```bash
from django.shortcuts import render
from django_qr_creator import Image
def demo_image(request, param_data=1, extension='png'):
return Image.get_image(
str_data='http://my-site.com/{param_data}'.format(param_data=param_data),
box_size=40,
content_type=extension)
```
Django QR Code
=====
Is a package
Quick start
-----------
1. Add "django_qr_code" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
...
'django_qr_creator',
]
2. Include the django_qr_code URLconf in your project urls.py like this::
path('image/', include('django_qr_creator.urls')),
3. Run `python manage.py migrate` to create the polls models.
4. Start the development server and visit http://127.0.0.1:8000/admin/
to create a poll (you'll need the Admin app enabled).
5. Visit http://127.0.0.1:8000/image/data/qr.png to participate in the django_qr_code.
Tested in python 3.6 with Django 2.0
Example of use in a template
----------------------------
```html
{% load django_qr_creator %}
```
Load this tags in you html template
```html
{% qr url='google.com' %}
```
For QR URL
```html
{% qr tel='+56948161822' %}
```
For QR Tel
```html
{% qr email='test@test.test' %}
```
For QR Mail
```html
{% qr location='40.7127753,-74.0059728' altitude='15' %}
```
For QR Location
```html
{% qr sms='+56948161822' message='this is a test' %}
```
For QR SMS
Example in view
---------------
```bash
from django.shortcuts import render
from django_qr_creator import Image
def demo_image(request, param_data=1, extension='png'):
return Image.get_image(
str_data='http://my-site.com/{param_data}'.format(param_data=param_data),
box_size=40,
content_type=extension)
```
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django_qr_creator-0.1.5.tar.gz
.
File metadata
- Download URL: django_qr_creator-0.1.5.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d70ad5c6072efaa58fd703a3ec2a99bdaeada1f5f7b08117ac5755c9ee007ab |
|
MD5 | 07a23ad11cdc3375d35ce33217e40fad |
|
BLAKE2b-256 | 1bca4825ce8d947d1f2d6c1e9978307901740cc2142b119df2bf169213d8dea4 |