Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install django-embed

How to install django-embed

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install django-embed
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
Windows (64-bit)
Mac OS X (10.5+)
Linux (32-bit)
Linux (64-bit)
0.2.1 Available View build log
 
License
MIT License
Imports
Lastest release
version 0.2.1 on May 15th, 2013

Embed is a Django app to generate the embed code for youtube, twitter and slideshare.

Detailed documentation is in the "docs" directory.

Quick start

  1. Add "embed" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'embed',
    )
    
  2. Run python manage.py syncdb to create the embed cache model.

  3. Import Embed class.

    from embed.utils import Embed

  1. You can use it individually for each service or all of them.

    youtube = Embed.get_youtube_embed(string="Check this video https://youtu.be/THgLyTucjmk")

  2. The Embed will return a string with the link replaced with the embed code.

  3. If you want use the twitter functionality you have to set your twitter api keys.

    Embed.consumer_key = 'dummy-consumer-key' Embed.consumer_secret = 'dummy-consumer-secret' Embed.oauth_token = 'dummy-access-token' Embed.oauth_token_secret = 'dummy-access-token-secret'

  4. You can set the parameters for the embed objects.

    Embed.config['width'] = '430'

  5. If you are using MySQL you need to encode to utf-8 the "embed_code" column of the EmbedCache table in your database.

Subscribe to package updates

Last updated May 15th, 2013

Download Stats

Last month:1

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.