Skip to content
This repository has been archived by the owner on Nov 24, 2023. It is now read-only.

kitsunde/django-youtubeembedfield

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django YouTube Embed Field

A field that accepts regular YouTube links and saves the embed ones. It just wraps the regular URLField and converts the input to YouTube embedded ones.

Installation

To get the latest stable release from PyPi:

$ pip install django-youtubeembedfield

To get the latest commit from GitHub:

$ pip install -e git+git://github.com/Celc/django-youtubeembedfield.git#egg=youtubeembedfield

Usage

Add the field to your model:

from youtubeembedfield import fields

class MyAwesomeModel(models.Model):
    youtube = fields.YouTubeEmbedField()

Contribute

If you want to contribute to this project, please perform the following steps:

# Fork this repository
# Clone your fork
$ git co -b feature_branch master
# Implement your feature and tests
$ git add . && git commit
$ git push -u origin feature_branch
# Send us a pull request for your feature branch

About

A field that accepts regular YouTube links and saves the embed ones.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages