Metadata-Version: 2.0
Name: ted2zim
Version: 1.0.1
Summary: TED ZIM creator for Offline Use 
Home-page: http://github.com/openzim/ted
Author: Kiwix
Author-email: contact@kiwix.org
License: GPL-3.0
Keywords: ted zim kiwix openzim offline
Platform: any
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: Jinja2 (==2.7.2)
Requires-Dist: MarkupSafe (==0.18)
Requires-Dist: Pillow (==2.6.1)
Requires-Dist: autopep8 (==1.0)
Requires-Dist: beautifulsoup4 (==4.3.2)
Requires-Dist: envoy (==0.0.2)
Requires-Dist: pep8 (==1.4.6)
Requires-Dist: python-dateutil (==2.6.1)
Requires-Dist: requests (==2.2.1)
Requires-Dist: six (==1.11.0)

# TED Scraper

TED (Technology, Entertainment, Design) is a global set of conferences under the slogan "ideas worth spreading". They address a wide range of topics within the research and practice of science and culture, often through storytelling. The speakers are given a maximum of 18 minutes to present their ideas in the most innovative and engaging ways they can. Its web site is www.ted.com.

The purpose of this project is to create a sustainable solution to create ZIM files providing the TED and TEDx videos in a similar manner like www.ted.com.
Everything about this project can be found [here](www.kiwix.org/wiki/TED). 

## Building the project

It's advised, that you have `pip` installed. 
Chose one of the following methods to do that:

    sudo apt-get install python-setuptools

    sudo easy_install pip

It's advised, that you have `virtualenv` installed:

    sudo pip install virtualenv

Up next you have to create a virtual enviroment in the kiwix-other/TED/ directory for the TED Scraper:

    virtualenv --no-site-packages venv 

Activiate the virtual enviroment:

    source venv/bin/activate

Install all the dependencies for the TED Scraper:

    pip install -r requirements.txt


