User contributions for PeterHarding
Jump to navigation
Jump to search
- 17:43, 2 May 2008 diff hist +7,622 N DB Testing via ODBC New page: =Using Windows ODBC with Python= Note this script explicitly references the ActiveState binary so as to utilize its in built ODBC module. Getting ODBC running with Python under Cygwin ha...
- 17:36, 2 May 2008 diff hist +1,815 Spawning Mutliple Scripts current
- 17:35, 2 May 2008 diff hist −3,815 Spawn.py
- 17:32, 2 May 2008 diff hist +5,950 N Analyse Test Script Logs New page: =calculate Mean and SD= This script takes the output of another script which produces test summary logs and calculates Mean and SD for query execution times. See [ODBC Test Script]. <pr... current
- 16:31, 2 May 2008 diff hist +18 MS SqlServer Notes
- 16:30, 2 May 2008 diff hist +18 ODBC Notes current
- 16:30, 2 May 2008 diff hist −16 ODBC
- 16:29, 2 May 2008 diff hist +18 ODBC
- 16:28, 2 May 2008 diff hist +39 N Category:ODBC New page: ODBC links, references and resources... current
- 16:28, 2 May 2008 diff hist +18 Spawn.py
- 16:28, 2 May 2008 diff hist +10,663 N Spawn.py New page: =Overview= This script is specifically targetted to run test.py which takes a single mandatory argument - the connector ID of the ODBC connection to use. So the script uses a list of con...
- 16:21, 2 May 2008 diff hist +39 N Category:LDAP New page: LDAP links, resources and references... current
- 16:21, 2 May 2008 diff hist +2,001 Analyse SLAPD Logs
- 22:28, 1 May 2008 diff hist +6,921 N Analyse SLAPD Logs New page: <pre> $ cat analyse.py #!/usr/bin/env python # # Purpose: # # $Id:$ # #------------------------------------------------------------------------------- """ Analyse SLAPD logs ... ...
- 22:13, 1 May 2008 diff hist +2,701 N Calendar SOAP Server Example New page: <pre> #!/usr/bin/env python # # $Id:$ # #--------------------------------------------------------------------- import sys, httplib #-----------------------------------------------------... current
- 22:05, 1 May 2008 diff hist +268 N SOAP References New page: * http://www.ibm.com/developerworks/views/webservices/libraryview.jsp?search_by=python+web+services+developer * http://www.ibm.com/developerworks/webservices/library/ws-pyth16/ * http://ww... current
- 22:04, 1 May 2008 diff hist +7,332 N Python SOAP Server New page: =From Vivtek= <pre> #!/usr/bin/env python ################################################################################ # # The Python SOAP server is a really easy way to export workf... current
- 20:14, 1 May 2008 diff hist −4 LDAP Search Script
- 20:13, 1 May 2008 diff hist +127 LDAP Search Script
- 20:12, 1 May 2008 diff hist 0 N File:DSERVER.tz current
- 20:06, 1 May 2008 diff hist +3 LDAP Search Script →vuser_end.c
- 20:06, 1 May 2008 diff hist +64 LDAP Search Script
- 20:06, 1 May 2008 diff hist +7,821 N LDAP Search Script New page: =Python Implementation= <pre> #!/usr/bin/env python # #------------------------------------------------------------------------------- import os import sys import ldap import time import...
- 19:40, 1 May 2008 diff hist +2 Spawning Mutliple Scripts
- 19:39, 1 May 2008 diff hist +56 Spawning Mutliple Scripts
- 19:39, 1 May 2008 diff hist 0 N File:Perfmon 01.gif current
- 19:35, 1 May 2008 diff hist +1,447 Spawning Mutliple Scripts
- 19:34, 1 May 2008 diff hist +5,145 N Spawning Mutliple Scripts New page: =Simple Script Spawner= In this script I needed to spawn scripts to utilized a limited number of ODBC connectors I had set up. I also wanted the script to process overnight and so I need...
- 09:57, 1 May 2008 diff hist +5,105 N Python REGEX Examples New page: =Reformat a LoadRunner Script= <pre> #!/usr/bin/env python # # $Id:$ # #-------------------------------------------------------------------------- import re import os import sys import ...
- 09:40, 1 May 2008 diff hist +204 Python Skeleton Scripts
- 09:37, 1 May 2008 diff hist +11,169 Python Skeleton Scripts
- 09:27, 1 May 2008 diff hist +3,446 N Python Skeleton Scripts New page: =Based on a server= <pre> #!/usr/bin/env python # # Purpose: # # $Id:$ # #------------------------------------------------------------------------------- """ Skeleton Python script...
- 19:30, 30 April 2008 diff hist −475 Python COM Examples
- 19:30, 30 April 2008 diff hist +47 Python COM Examples
- 19:30, 30 April 2008 diff hist +2,651 N Python COM Examples New page: <pre> ============================================================================ Try this Python-based COM automation “Hello World” code in XSI just for kicks! import win32com.clie...
- 19:27, 30 April 2008 diff hist +78 SNMP FAQ - Part 1 current
- 19:27, 30 April 2008 diff hist +14 N SNMP FAQ - Part 1 New page: Where is this?
- 19:26, 30 April 2008 diff hist +71 N Category:SNMP New page: Info and resources related to Simple Network Management Protocol (SNMP) current
- 19:26, 30 April 2008 diff hist +64 SNMP FAQ - Part 2 current
- 19:25, 30 April 2008 diff hist +172,974 N SNMP FAQ - Part 2 New page: <pre> Archive-name: snmp-faq/part2 Posting-Frequency: every few months or so Last-Modified: 2 Jul 2003 Version: 2.57 comp.protocols.snmp PART 2 of ...
- 19:23, 30 April 2008 diff hist +47 N Pymssql Examples Pymssql Examples moved to Python pymssql and dblib Examples current
- 19:23, 30 April 2008 diff hist 0 m Python pymssql and dblib Examples Pymssql Examples moved to Python pymssql and dblib Examples
- 19:23, 30 April 2008 diff hist +34,523 Python pymssql and dblib Examples
- 19:19, 30 April 2008 diff hist +961 N Python pymssql and dblib Examples New page: <pre> import pymssql con = pymssql.connect(host='192.168.13.122',user='sa',password='',database='tempdb') cur = con.cursor() query="create table pymssql (no int, fno float, comment va...
- 19:18, 30 April 2008 diff hist +92 Implementing Timers in Python
- 19:17, 30 April 2008 diff hist +1,182 N Implementing Timers in Python New page: <pre> import signal, time class TimedOutExc(Exception): def __init__(self, value = "Timed Out"): self.value = value def __str__(self): return repr(self.value) def...
- 19:15, 30 April 2008 diff hist +1 Implementing a Simple Web Server to Run Scripts current
- 19:14, 30 April 2008 diff hist +5 Implementing a Simple Web Server to Run Scripts
- 19:14, 30 April 2008 diff hist +2 Implementing a Simple Web Server to Run Scripts
- 19:13, 30 April 2008 diff hist +2 Implementing a Simple Web Server to Run Scripts