Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In

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

Views: 94669
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*- #
3
from __future__ import unicode_literals
4
5
# This file is only used if you use `make publish` or
6
# explicitly specify it as your config file.
7
8
import os
9
import sys
10
sys.path.append(os.curdir)
11
from pelicanconf import *
12
13
SITEURL = 'http://jakevdp.github.io/PythonDataScienceHandbook'
14
RELATIVE_URLS = False
15
16
SHOW_FEED = False
17
FEED_ALL_ATOM = 'feeds/all.atom.xml'
18
CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
19
FEED_USE_SUMMARY = True # from the feed_summary plugin
20
21
DELETE_OUTPUT_DIRECTORY = True
22
23
DISQUS_SITENAME = "pythonicperambulations"
24
GOOGLE_ANALYTICS = "UA-34061646-1"
25
26