Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
| Download
Python Data Science Handbook
Project: Python Data Science Handbook
Views: 94669#!/usr/bin/env python1# -*- coding: utf-8 -*- #2from __future__ import unicode_literals34AUTHOR = 'Jake VanderPlas'5SITENAME = 'Python Data Science Handbook'6SITESUBTITLE = u'Essential Tools for Working with Data'7SITEURL = ''8SITESUBURL = 'PythonDataScienceHandbook/'9PATH = 'content'10TIMEZONE = 'America/Los_Angeles'11DEFAULT_LANG = 'en'1213# Feed generation is usually not desired when developing14FEED_ALL_ATOM = None15CATEGORY_FEED_ATOM = None16TRANSLATION_FEED_ATOM = None17AUTHOR_FEED_ATOM = None18AUTHOR_FEED_RSS = None1920# Set the article URL21ARTICLE_URL = 'blog/{date:%Y}/{date:%m}/{date:%d}/{slug}/'22ARTICLE_SAVE_AS = 'blog/{date:%Y}/{date:%m}/{date:%d}/{slug}/index.html'2324DEFAULT_PAGINATION = 102526# Uncomment following line if you want document-relative URLs when developing27#RELATIVE_URLS = True2829#MARKUP = ('md', 'ipynb')30#PLUGINS = ['ipynb.markup']3132MARKUP = ['md']33PLUGIN_PATHS = ['./plugins', './plugins/pelican-plugins']34PLUGINS = [35'summary', # auto-summarizing articles36'feed_summary', # use summaries for RSS, not full articles37'ipynb.liquid', # for embedding notebooks38'liquid_tags.img', # embedding images39'liquid_tags.video', # embedding videos40'liquid_tags.include_code', # including code blocks41'liquid_tags.literal'42]43IGNORE_FILES = ['.ipynb_checkpoints']4445# for liquid tags46CODE_DIR = 'downloads/code'47NOTEBOOK_DIR = 'downloads/notebooks'4849# THEME SETTINGS50THEME = './theme/'5152ABOUT_PAGE = '/pages/about.html'53TWITTER_USERNAME = 'jakevdp'54GITHUB_USERNAME = 'jakevdp'55STACKOVERFLOW_ADDRESS = 'http://stackoverflow.com/users/2937831/jakevdp'56AUTHOR_WEBSITE = 'http://vanderplas.com'57AUTHOR_BLOG = 'http://jakevdp.github.io'58AUTHOR_CV = "http://staff.washington.edu/jakevdp/media/pdfs/CV.pdf"59SHOW_ARCHIVES = True60SHOW_FEED = False # Need to address large feeds6162ENABLE_MATHJAX = True6364STATIC_PATHS = ['images', 'figures', 'videos', 'downloads', 'favicon.ico']6566# Footer info6768LICENSE_URL = "https://github.com/jakevdp/jakevdp.github.io-source/blob/master/LICENSE"69LICENSE = "MIT"707172