Jupyter talks and examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Project Jupyter uses the following to autopopulate version | |
_version_py = '../../jupyterhub/version.py' | |
version_ns = {} | |
exec(compile(open(_version_py).read(), _version_py, 'exec'), version_ns) | |
# The short X.Y version. | |
version = '%i.%i' % version_ns['version_info'][:2] | |
# The full version, including alpha/beta/rc tags. | |
release = version_ns['__version__'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nbformat | |
from nbformat.v4 import new_code_cell,new_notebook | |
import codecs | |
sourceFile = "changeMe.py" # <<<< change | |
destFile = "changeMe.ipynb" # <<<< change | |
def parsePy(fn): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
info: | |
title: Jupyter Notebook API | |
description: Notebook API | |
version: "5" | |
contact: | |
name: Jupyter Project | |
url: jupyter.org | |
# will be prefixed to all paths | |
basePath: /api |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT name, setting | |
FROM pg_settings | |
WHERE category = 'File Locations'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Blog post on sys path http://mikeboers.com/blog/2014/05/23/where-does-the-sys-path-start | |
Talk by Carl Meyers http://pyvideo.org/video/389/pycon-2011--reverse-engineering-ian-bicking--39-s | |
Last updated on or before 12/31/2015 is:issue is:open updated:<=2015-12-31 sort:updated-desc
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import re | |
import os | |
import urlparse | |
import hashlib | |
import json | |
import sys | |
title_re = re.compile(r'([=*]{3,})\n([^\n]+)\n\1\n') |
- Link to PyCon posters on Building Documentation: https://www.dropbox.com/sh/58j31yokefdp8tm/AACNCmKZQxuhUnvBRW2TnCM7a?dl=0
- Link to Documentation Guide: https://jupyter.readthedocs.io/en/latest/contrib_docs/index.html
- Documentation tracking site: http://www.iheartjupyterdocs.org/