Skip to content

Instantly share code, notes, and snippets.

@Dmitri-Sintsov
Dmitri-Sintsov / flake8.xml
Last active December 29, 2016 09:09 — forked from jsmits/flake8.xml
PyCharm Flake8 Configuration XML that uses current virtualenv interpreter.
<toolSet name="Code Checking">
<tool name="Flake8" showInMainMenu="true" showInEditor="true" showInProject="true" showInSearchPopup="true" disabled="false" useConsole="true" showConsoleOnStdOut="false" showConsoleOnStdErr="false" synchronizeAfterRun="true">
<exec>
<option name="COMMAND" value="$PyInterpreterDirectory$/python" />
<option name="PARAMETERS" value="-m flake8 --max-complexity 10 --ignore E501 $FilePath$" />
<option name="WORKING_DIRECTORY" value="$ProjectFileDir$" />
</exec>
<filter>
<option name="NAME" value="Filter 1" />
<option name="DESCRIPTION" />
@Dmitri-Sintsov
Dmitri-Sintsov / main.py
Created August 16, 2015 19:37
Simple proxy server in Python with HTML text substitution.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import lxml.html
from lxml.etree import tostring as etree_tostring
import re
import SocketServer
import SimpleHTTPServer
import shutil
import StringIO
import urllib2