{"id":27161785,"url":"https://github.com/suquant/django-vimeo","last_synced_at":"2025-10-07T10:29:25.291Z","repository":{"id":57422594,"uuid":"49581188","full_name":"suquant/django-vimeo","owner":"suquant","description":"Django Vimeo","archived":false,"fork":false,"pushed_at":"2019-07-05T13:51:46.000Z","size":29,"stargazers_count":4,"open_issues_count":2,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-19T00:38:34.554Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/suquant.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-13T15:07:37.000Z","updated_at":"2021-03-15T04:17:56.000Z","dependencies_parsed_at":"2022-09-13T15:41:03.728Z","dependency_job_id":null,"html_url":"https://github.com/suquant/django-vimeo","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suquant%2Fdjango-vimeo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suquant%2Fdjango-vimeo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suquant%2Fdjango-vimeo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suquant%2Fdjango-vimeo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/suquant","download_url":"https://codeload.github.com/suquant/django-vimeo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247953108,"owners_count":21023947,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-09T00:58:00.133Z","updated_at":"2025-10-07T10:29:20.237Z","avatar_url":"https://github.com/suquant.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"django-vimeo\n==================\n\nDjango module for easy embedding Vimeo videos into app.\n\n.. image:: https://travis-ci.org/suquant/django-vimeo.svg?branch=master\n    :target: https://travis-ci.org/suquant/django-vimeo\n.. image:: https://coveralls.io/repos/suquant/django-vimeo/badge.svg?branch=master\u0026service=github\n    :target: https://coveralls.io/github/suquant/django-vimeo?branch=master\n\n\nQuick start\n************\n\n#. Install ``django-vimeo``:\n\n   ::\n\n      pip install django-vimeo\n\n\n   or from sources\n\n   ::\n\n      pip install git+https://github.com/suquant/django-vimeo.git\n\n\n#. Add ``django_vimeo`` to ``INSTALLED_APPS`` in your Django settings.\n\n#. Add credentials into settings.\n\n   Create new application in https://developer.vimeo.com/apps\n\n   ::\n\n      VIMEO_CLIENT_ID = 'client id'\n      VIMEO_CLIENT_SECRET = 'client secret'\n      VIMEO_ACCESS_TOKEN = 'access token'\n\n   For activate use cache\n\n   ::\n\n      VIMEO_CACHE_BACKEND = 'default' # Default: None\n      VIMEO_CACHE_EXPIRES = 300 # Default: 300 seconds\n\n\n      \"If 'VIMEO_CACHE_BACKEND' not setted or 'None', cache will be not used\"\n\n#. Usage of template tags:\n\n   ::\n\n      {% load django_vimeo_tags %}\n\n      The video tag:\n      {% vimeo instance.video width=600 as video %}\n         \u003cvideo width=\"600\" loop=\"loop\" autoplay=\"autoplay\" poster=\"{{ video.optimal_picture.link }}\"\u003e\n             \u003csource src=\"{{ video.optimal_file.link_secure }}\" type='{{ video.optimal_file.type }}'\u003e\n             {% trans 'tag \"video\" not supported by your browser' %}\n             \u003ca href=\"{{ video.optimal_download.link }}\"\u003e{% trans 'download video' %}\u003c/a\u003e.\n         \u003c/video\u003e\n      {% endvimeo %}\n\n      Or embed shortcut:\n      {% vimeo instance.video width=600 %}\n\n#. Usage of model fields\n\n   ::\n\n      from django.db import models\n      from django_vimeo import fields\n\n\n      class ExampleModel(models.Model):\n         video = fields.VimeoField(null=True, blank=True)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuquant%2Fdjango-vimeo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuquant%2Fdjango-vimeo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuquant%2Fdjango-vimeo/lists"}