Accessing camera on Django Webframework
Project description
djangocamera
A library that makes it simple to use one function to integrate a camera with the Django framework on a website.
Installation
Use the package manager pip to install foobar.
pip install djangocamera
Usage
The views.py
file, in the app
directory:
from django.shortcuts import render
from djangocamera.streaming import video_feed
# returns 'camera video'
def camera(request):
return video_feed()
def index(request):
return render(request,"index.html",{})
The urls.py
file, in the app
directory:
from django.urls import path
from . import views
urlpatterns = [
path("camera/",views.camera,name="camera"),
path("",views.index,name="index"),
]
The index.html
file, in the templates directory:
<!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>Document</title>
</head>
<body>
<img src="{% url 'camera' %}" alt="#" >
</body>
</html>
Contributing
Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
djangocamera-0.0.1.tar.gz
(3.5 kB
view hashes)
Built Distribution
Close
Hashes for djangocamera-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3047c3744499b2f85bdebe216682d2a03ebb4dfce38259b7b0f463c120243496 |
|
MD5 | db515247950f10cd19bd4d314ca66d63 |
|
BLAKE2b-256 | ed8b9e814293df42071d898e7f3ae49c92dc5f80583edc245fa77d1b864dedf0 |