Werkzeug - https://pypi.python.org/pypi/Werkzeug
- 351372 downloads in the last month
- 361939 downloads in the last month - 2014-07-22
Werkzeug - https://pypi.python.org/pypi/Werkzeug
NOTE: Work in progress
TODO: Identity management, two-factor auth, OpenVPN, Logstash, log shippers, IIS logs, OSSEC, Snort, Suricata, snorby, restart iis w/o admin role,
Evaluating Tools for Developing with SOAP in Python. Doug Hellmann - http://doughellmann.com/2009/09/01/evaluating-tools-for-developing-with-soap-in-python.html
What's the best SOAP client library for Python, and where is the documentation for it? - http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-f
What's the best SOAP library for Python 3.x? - http://stackoverflow.com/questions/7817303/whats-the-best-soap-library-for-python-3-x
FROM ubuntu:14.04 | |
MAINTAINER Alexey Diyan [email protected] | |
### NOTE. Command ./run.sh will rebuild this container | |
### OS. Apply Docker workarounds, update the APT cache | |
# http://crosbymichael.com/dockerfile-best-practices-take-2.html | |
ENV LC_ALL C.UTF-8 | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN echo 'root:root' | chpasswd |
""" | |
Selenium WebDriver monkey patch for using any CSS selector that jQuery supports. | |
Useful urls: | |
Inject the Sizzle CSS selector library. Selenium WebDriver - http://selenium.polteq.com/en/injecting-the-sizzle-css-selector-library/ | |
Adding the Sizzle CSS Selector library in WebDriver - http://seleniumtestingworld.blogspot.com/2013/01/adding-sizzle-css-selector-library-and.html | |
""" | |
from __future__ import unicode_literals | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.remote.webdriver import WebDriver as RemoteWebDriver |
#NOTE This is alpha quality code. Works only on my workstation. | |
#NOTE Some details looks weird becase code is ported from my FlaskScales extension with minimal changes | |
from __future__ import unicode_literals | |
import os | |
import socket | |
from urlparse import urlparse | |
import logging | |
from flask import _request_ctx_stack | |
from flask.signals import got_request_exception, request_started, request_finished, template_rendered | |
from astrolabe import Interval |
Python C wrappers benchmark result on Asus Zenbook Prime UX31A / Core i7 3517U 1900 Mhz / Ubuntu 13.10 64 bit / Python 2.7.5 64 bit
Installation instructions for Ubuntu 13.10
$ git clone https://github.com/koder-ua/wrappers_test.git && cd $_
$ virtualenv . && . bin/activate
$ sudo apt-get install python-dev swig python-sip-dev libffi-dev libboost-python-dev python-sip-dev
$ pip install cython cffi
$ make
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta name="generator" content="lshw-B.02.16" /> | |
<style type="text/css"> | |
.first {font-weight: bold; margin-left: none; padding-right: 1em;vertical-align: top; } | |
.second {padding-left: 1em; width: 100%; vertical-align: center; } | |
.id {font-family: monospace;} |