You are using pip version 7.1.0, however version 7.1.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Collecting lxml==3.4.4
Downloading lxml-3.4.4.tar.gz (3.5MB)
100% |████████████████████████████████| 3.5MB 142kB/s
Building wheels for collected packages: lxml
Running setup.py bdist_wheel for lxml
Complete output from command /Users/msikma/.virtualenvs/rei3/bin/python3.4 -c "import setuptools;__file__='/private/var/folders/hb/9_3q3d1546bf7ffzlfgz_yhr0000gn/T/pip-build-3mfhlj15/lxml/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d /var/folders/hb/9_3q3d1546bf7ffzlfgz_yhr0000gn/T/tmpftx5pynlpip-wheel-:
Building lxml version 3.4.4.
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
// hello | |
var ArgumentParser = require('argparse').ArgumentParser; | |
var ArrFormatter = require('./arr-formatter'); | |
// Data from our package, where we keep app-specific configuration. | |
var packageData = require('../../package.json'); | |
var appConfig = packageData._app; | |
var appVersion = packageData.name + ' (' + packageData.version + ')'; | |
var appArgs = require('./run-args'); |
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 untangle | |
xml = '''<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE TestXml [ | |
<!ELEMENT TestXml (TestNode*)> | |
<!ELEMENT TestNode (#PCDATA)> | |
<!ENTITY testent "test entity"> | |
]> |
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 xml.etree.ElementTree as ET | |
xml = '''<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE TestXml [ | |
<!ELEMENT TestXml (TestNode*)> | |
<!ELEMENT TestNode (#PCDATA)> | |
<!ENTITY testent "test entity"> | |
]> |
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
var fs = require('fs'); | |
var path = require('path'); | |
var WebpackIsomorphicTools = require('webpack-isomorphic-tools'); | |
var isoToolsOptions = require('../../tasks/webpack/webpack-isomorphic-tools'); | |
var babelOptions = JSON.parse(fs.readFileSync('./.babelrc', 'utf8')); | |
// todo: describe | |
var pipingOptions = { | |
hook: true, |
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 argparse | |
argparser = argparse.ArgumentParser(add_help=True) | |
argparser.description = 'Description.' | |
argparser.epilog = 'Epilog.' | |
argparser.add_argument('--version', action='version', version='1.0.0') | |
subparsers = argparser.add_subparsers( | |
title='Positional arguments', | |
dest='posarg' |
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
Show hidden characters
{ | |
// Uses the Airbnb config as a base with a number of overrides. | |
// See <https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb>. | |
"extends": "eslint-config-airbnb", | |
"env": { | |
"browser": true, | |
"node": true | |
}, | |
"rules": { | |
"block-scoped-var": 0, |
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
/** | |
* Returns a function that will print a line to the console in a given color. | |
* The line will be prefixed and colored. All substituted values are bolded. | |
* | |
* @param {String} color Color to print in (must be supported by cli-color) | |
* @param {String} level Severity of the message {log, info, warn, error} | |
* @param {String} pre Prefix character in front of the message | |
* @returns {Function} Logging printer | |
*/ | |
function logMessage(color, level='log', pre=bullet) { |
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
一二三四五六七八九十百千日本人中国田何先生学校門時計辞書手紙糸万円会社受付教室月火水木金土曜朝昼晩夜今午前後毎半分起働休終勉強行来帰歩友達週年去名病院駅飛機電車気見聞読食飲買実習映画写真牛馬肉魚茶酒お父母兄姉弟妹家族主子内借貸切修理英語大小高低安新古暑寒熱冷悪青赤白黒親有山花町元宿題間頭痛歌音楽薬字料好全鳥上下右左男女外公園図使館竹箱筆庭銀地鉄汽船漢荷物回台階雨雪雲空天店多少遠近暖温早速旅出入送遊欲結言話呼取覚急伝番号方線塩立売消作開閉待身知仕事工場委員住所戸都府県区市郡村州力口目耳鼻歯顔足体長短明暗重軽広乗浴心配残念止返絵泳練始運転刀弓矢失礼初 |
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
\version "2.18.2" | |
\language "english" | |
\header { | |
title = "Prelude No.4" | |
subtitle = "24 Praeludien" | |
composer = "F. Chopin" | |
opus = "Op.28" | |
tagline = "tagline" | |
} |