All Projects → pyvideo → Pyvideo

pyvideo / Pyvideo

Licence: gpl-3.0
A Python media index

Programming Languages

python
139335 projects - #7 most used programming language

pyvideo

.. image:: https://badges.gitter.im/pyvideo/pyvideo.svg :alt: Join the chat at https://gitter.im/pyvideo/pyvideo :target: https://gitter.im/pyvideo/pyvideo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge

.. image:: https://travis-ci.org/pyvideo/pyvideo.svg?branch=master :target: https://travis-ci.org/pyvideo/pyvideo

.. image:: https://zenodo.org/badge/23288/pyvideo/pyvideo.svg :target: https://zenodo.org/badge/latestdoi/23288/pyvideo/pyvideo

https://pyvideo.org is simply an index of Python-related media records. The raw data being used here comes out of the pyvideo/data_ repo.

.. _pyvideo/data: https://github.com/pyvideo/data

Before opening a PR, please check out our Development Philosophy_.

.. _Development Philosophy: https://github.com/pyvideo/pyvideo/wiki/Development-Philosophy

Development setup

Setting up a development environment is as simple as four easy steps.

  1. Clone repo (recursively; it contains submodules)
  2. Install dependencies
  3. Build reST files from JSON files
  4. Build HTML files from reST files

All of these steps are explained in detail below.

First, pull down this repo's code::

$ git clone --recursive https://github.com/pyvideo/pyvideo.git

Then, install the dependencies for building this site. It is recommended to install all the requirements inside virtualenv_, use virtualenvwrapper_ to manage virtualenvs. Building pyvideo.org requires Python 3.5

.. _virtualenv: https://virtualenv.pypa.io/en/latest/ .. _virtualenvwrapper: https://virtualenvwrapper.readthedocs.org/en/latest/

First of all, create a virtual environment to install all the dependencies into either using virtualenvwrapper::

$ mkvirtualenv -p python3 pyvideo

... or using pyvenv::

$ pyvenv .env && source .env/bin/activate

From the root of the repo, run the following command::

$ pip install -r requirements/dev.in

Finally, you'll be able to generate the HTML site. From the root of the repo, run the following command::

$ make html

To view the site, run the following command::

$ make serve

This will start development server on port 8000. Goto browser and open http://localhost:8000 to view your local version of pyvideo.org!

Debugging

If you're trying to debug unexpected build results, you can pass one of two variables to the make process to influence to logging level::

Show Pelican warnings

$ make VERBOSE=1 html

Show even more output

$ make DEBUG=1 html

Accessibility tests

There are automated tests to ensure that none of the pages have significant accessibility problems; to run them:

  1. Download chromedriver <https://sites.google.com/a/chromium.org/chromedriver/downloads>_ and add it to your PATH environment variable (copy to /usr/local/bin, etc.)
  2. Run make test

Want to help?

We'd love the help! All feature ideas and bugs-to-be-fixed are listed in the issues <https://github.com/pyvideo/pyvideo/issues>_ associated with this repo. Please check there for ideas on how to contribute. Thanks!

If you want to contribute new media, please check the pyvideo/data_ repo and its contribution docs_.

Found an issue?

If you've found an issue with the site or something that could be done better, please open an issue_ on Github.

.. _issue: https://github.com/pyvideo/pyvideo/issues .. _contribution docs: https://github.com/pyvideo/data/blob/master/CONTRIBUTING.rst

Want our Google Analytics info?

PyVideo tries to be as open source as possible. We share the data that Google Analytics collects on request. Please feel free to send an email to [email protected] with the header "Google Analytics Access Request" if you would like access to this data. Please note that it may take a few weeks to be granted this access.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].