Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

djangocamera

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

djangocamera

Accessing camera on Django Webframework

  • 0.0.1
  • PyPI
  • Socket score

Maintainers
1

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

MIT

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc