Pyramboia - a simple way to test webservices

I’m learning Django 1.7 lately and nothing better than practice and create something from scratch. I have a bunch of scripts to tests webservices(XML, soap, etc.) in python using requests library, it works well so far. It returns the time it spent running, the result in an XML format and based on these data I make decisions(send email, feed it to a monitoring tool, etc.). When it’s 1 or 2 scripts is easy to admin and make changes like the XML request, headers and so on....

September 29, 2014 · 5 min · Danilo Fernando Chilene

Application test with Python

Multi-Mechanize is an open source framework for performance and load testing. It runs concurrent Python scripts to generate load (synthetic transactions) against a remote site or service. Test output reports are saved as HTML or JMeter-compatible XML. I will use pip to install the package but you can download the source and install it manually: (bicofino.io)danilochilene@undead:~$ pip install multi-mechanize Downloading/unpacking multi-mechanize Downloading multi-mechanize-1.2.0.tar.gz Running setup.py egg_info for package multi-mechanize Downloading/unpacking Mechanize (from multi-mechanize) Downloading mechanize-0....

December 6, 2013 · 3 min · Danilo Fernando Chilene