Skip to content

vokai/django-video-embedding

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QUICK START

Django video embedding is a Python-Django library to have custom VideoField in models and custom VideoForm in forms.

Installation

Use the package manager pip to install:

pip install django-video-embedding 

Usage

[settings.py] 
INSTALLED_APPS = (
    'django_video_embedding',
)


[models.py]
from django_embedding_video.fields import VideoField

class Item(models.Model):
    video = VideoField()  # same like models.URLField()

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

About

Add a custom VideoField and VideoFormField for Django > 2.0 and Python > 3.6

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages