/usr/share/pyshared/starpy/doc/index.html is in python-starpy 1.0.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<link rel="stylesheet" type="text/css" href="style/sitestyle.css">
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>StarPy Asterisk Protocols for Twisted</title></head>
<body>
<h1>StarPy
Asterisk Protocols for Twisted<br>
</h1>
<p class="introduction">StarPy
is a Python + Twisted
protocol that provides access to the Asterisk PBX's Manager Interface
(AMI) and Fast Asterisk Gateway Interface (FastAGI). Together these
allow you write both command-and-control interfaces (used, for example
to generate new calls) and to customise user interactions from the
dial-plan. You can readily write applications that use the AMI
and FastAGI protocol together with any of the already-available Twisted
protocols.</p>
<p class="introduction">StarPy is primarily intended to allow Twisted
developers to add Asterisk connectivity to their Twisted
applications. It isn't really targeted at the normal AGI-writing
populace, as it requires understanding Twisted's asynchronous
programming model. That said, if you do know Twisted, it can
readily be used to write stand-alone FastAGIs.<br>
</p>
<p class="technical">StarPy is Open Source, the we are interested in
contributions, bug reports and feedback. The contributors (listed
below) may also be available for implementation and extension contracts.<br>
</p>
<h2>Installation</h2>
<p>StarPy is a pure-Python
distutils extension. Simply unpack the
<a href="https://sourceforge.net/project/showfiles.php?group_id=164040">source
archive</a> to a temporary directory and run:</p>
<pre>python setup.py install<br></pre>
<p>You
will need <a href="http://www.python.org/">Python</a> 2.3+ and
<a href="http://twistedmatrix.com/">Twisted</a> (Core) installed.
You'll need <a href="http://basicproperty.sourceforge.net/">BasicProperty</a>
as well. If you want to check out the SVN version instead of a
released version, use:</p>
<pre>svn co https://svn.sourceforge.net/svnroot/starpy/trunk starpy<br></pre>
<p>On your PythonPath.</p>
<p>The demonstration applications use the <a href="pydoc/starpy.utilapplication.html">utilapplication</a> module,
which uses configuration-file-based setup of the AMI and FastAGI
servers. To use this, create a starpy.conf file for the current
directory (directory from which to run an example script) or a
~/.starpy.conf user-global file. Content of the configuration
file(s) looks like this:</p>
<pre>[AMI]<br>username=AMIUSERNAME<br>secret=AMIPASSWORD<br>server=127.0.0.1<br>port=5038<br><br>[FastAGI]<br>port=4573<br>interface=127.0.0.1<br>context=survey<br></pre>
<p>Keep in mind that FastAGI applications are neither encrypting nor
authenticating; you probably should not expose them on any interface
other than local (127.0.0.1)!</p>
<h2>Asterisk Manager Interface
(AMI) Usage</h2>
<p><span class="technical"></span></p>
<p>StarPy provides most of the
hooks you want to use on the protocol instances. The AMI
client is created by a client factory, as is standard for Twisted
operation. You can create a factory manually like so:</p>
<pre>from starpy import manager<br>f = manager.AMIFactory(sys.argv[1], sys.argv[2])<br>df = f.login('server',port)</pre>
<p>The factory takes the username
and secret (password) for the Asterisk manager interface (note: do not
actually pass in these values on the command-line in a real
application, as this would expose the username and password to anyone
on the machine). The deferred object returned from the login
call will fire when the AMI connection has been established and
authenticated. You register callbacks on the deferred to
accomplish those tasks you'd like to accomplish.</p>
<p>You will need to configure
Asterisk to have the AMI enabled and choose the username, password and
allowed hosts in
/etc/asterisk/manager.conf. You will also need to be sure that
the AMI user has sufficient permissions to carry out whatever AMI
operations you want to perform:</p>
<pre>[USERNAME]<br>secret=SECRETPASSWORD<br>permit=127.0.0.1<br>read = system,call,log,verbose,command,agent,user<br>write = system,call,log,verbose,command,agent,user</pre>
<p>Please keep in mind that the AMI
interface is not encrypted, so should never be run across an insecure
network. If you need to run across such a network, use ssh
tunnelling or the like to prevent eavesdropping! You will want to
read up on the <a href="http://www.voip-info.org/wiki/view/Asterisk+manager+API">AMI</a>
in the voip-info Wiki.<br>
</p>
<p>The return value for the
login() deferred is an <a href="pydoc/starpy.manager.html#AMIProtocol">AMIProtocol</a>
instance. The various methods on the AMIProtocol generally
handle the creation and interpretation of "Action ID" fields.
The return value for most methods is an event, message or list of
events. Messages and events are modeled as dictionaries with
lower-case keys.</p>
<p>Perhaps the most common task desired for use with the AMI Protocol
is the creation of new calls. Here's a snippet showing such
generation:</p>
<pre>self.ami.originate( <br> self.callbackChannel,<br> self.ourContext, id(self), 1,<br> timeout = 15,<br>)<br></pre>
<p>You will likely want to ignore the results of the originate, and
instead use an equal timeout waiting for an AGI connection to determine
whether you have connected (the AMI originate can "succeed" without a
successful connection, and will not tell you what channel is
created). If you want to track whether you have returned from a
particular call to originate, use a different extension for each
originate call (you can use UtilApplication's <a href="pydoc/starpy.utilapplication.html#UtilApplication-waitForCallOn">waitForCallOn</a>
method to register a one-shot handler if you are using UtilApplication).</p>
<p>Another common task is watching for an event of a particular type,
for instance a "Hangup" event. The AMIProtocol instance has a
method registerEvent that allows you to add a handler to be called
whenever an event of a given type is observed.</p>
<pre>def onChannelHangup( ami, event ):<br> """Deal with the hangup of an event"""<br> if event['uniqueid'] == self.uniqueChannelId:<br> log.info( """AMI Detected close of our channel: %s""", self.uniqueChannelId )<br> self.stopTime = time.time()<br> # give the user a few seconds to put down the hand-set<br> reactor.callLater( 2, df.callback, event )<br> self.ami.deregisterEvent( 'Hangup', onChannelHangup )<br>self.ami.registerEvent( 'Hangup', onChannelHangup )<br>return df.addCallback( self.onHangup, callbacks=5 )<br></pre>
<p><span class="technical">Note that the registerEvent and
deregisterEvent methods use object identity to manage the callbacks
being stored, as a result, a method is not a good handler (since method
objects are created and destroyed each time they are accessed) to
choose. A nested function that can be passed to deregisterHandler
is generally a better choice. Eventually we may use PyDispatcher
for the registration as it has solved this problem already in a far
more general way.</span></p>
<p>See the
examples/connecttoivr.py and examples/calldurationcallback.py scripts
for sample usage of the AMIProtocol</p>
<p><span class="technical">Note that StarPy uses floating-point seconds
for all time values in all interfaces, </span></p>
<span style="font-family: monospace;"></span>
<h2>Fast Asterisk Gateway
Interface (FastAGI) Usage</h2>
<p>Again, most of the hooks you
want to use are provided on the protocol instances. FastAGI
is a server, and is thus created by a (non-client) factory like so:</p>
<pre>from starpy import fastagi<br>f = fastagi.FastAGIFactory(testFunction)<br>reactor.listenTCP( 4573, f, 50, '127.0.0.1')</pre>
<p>testFunction in the example above is the
operation to undertake when the Asterisk Server connects to the FastAGI
server. It takes a (connected) <a href="pydoc/starpy.fastagi.html#FastAGIProtocol">FastAGIProtocol</a>
instance as its only argument.</p>
<p>This FastAGI protocol has methods available which match those <a href="http://www.voip-info.org/wiki-Asterisk+AGI">AGI functions</a>
documented in the voip-info wiki. Each method has basic
documentation in the automated reference linked above, but you will
want to use the wiki documentation to understand the semantics of the
calls. Keep in mind that the <a href="pydoc/starpy.fastagi.html#FastAGIProtocol-execute">execute</a>
method (known as exec (which is a Python keyword) in the AGI
documentation) allows you to access <a href="http://www.voip-info.org/wiki/index.php?page=Asterisk+-+documentation+of+application+commands">Asterisk
Applications</a> as well as AGI methods.</p>
<p>You use a FastAGI application
from your Dial Plan like this (note: arguments do not
appear to be passed to FastAGI scripts in Asterisk 1.2.1, unlike
regular AGI scripts):</p>
<pre>exten => 1000,3,AGI(agi://127.0.0.1:4573)</pre>
<p>Please keep in mind that the
FastAGI interface is neither encrypted nor authenticating! It
should never be run across an insecure network and should never be run
on a port that is accessible from a public network. Also keep in
mind that your FastAGI process must be running already when Asterisk
tries to connect to it, you need to code your FastAGI process to be
robust so that it is always available to Asterisk.<br>
</p>
<p>See the examples directory for
examples of FastAGI scripts.</p>
<p><span class="technical">Note that StarPy uses floating-point seconds
for all time values in all interfaces, </span></p>
<h3>Sequential Operations</h3>
The <a href="pydoc/fastagi.html#InSequence">InSequence</a>
class allows for easily setting up multiple chained deferred processes,
for instance when you want to play 2 or 3 sound files
sequentially.
It is used like this:
<pre>sequence = fastagi.InSequence()<br>sequence.append( agi.setContext, agi.variables['agi_context'] )<br>sequence.append( agi.setExtension, agi.variables['agi_extension'] )<br>sequence.append( agi.setPriority, int(agi.variables['agi_priority'])+difference )<br>sequence.append( agi.finish )<br>return sequence()<br></pre>
<p>Calling the populated sequence returns a deferred which fires when
all elements finish, or any element fails (raise an
exception/failure). The InSequence class is a trivial convenience
that avoids needing to define a new callable function for every
operation of a many-step operation.<br>
</p>
<h3>Menu Objects Usage</h3>
<p>The FastAGI interface includes basic support for creating hierarchic
<a href="pydoc/starpy.menu.html">IVR menus</a>. The purpose of
the menuing system is to encapsulate common UI functionality at a
higher level of abstraction than that seen in the raw FastAGI
interface. Menus are defined using "model" classes which describe
the desired features of the menu. An example <a href="pydoc/starpy.menu.html#Menu">Menu</a> using simple single-digit <a href="pydoc/starpy.menu.html#Option">Option</a> instances:</p>
<pre>m = menu.Menu(<br> tellInvalid = False, # don't report incorrect selections<br> prompt = 'atlantic',<br> options = [<br> menu.Option( option='0' ),<br> menu.Option( option='#' ),<br> menu.ExitOn( option='*' ),<br> ],<br> maxRepetitions = 5,<br>)<br></pre>
<p>To invoke the menu, simply call it with a FastAGI protocol instance
as its first argument. The menu will repeat up to maxRepetitions
times if an invalid or null entry is chosen. If tellInvalid is
True, the menu will play an "invalid entry" message of your choosing on
an unrecognised entry, otherwise it will ignore invalid choices.</p>
<p>If a callable option is specified, such as <a href="pydoc/starpy.menu.html#ExitOn">ExitOn</a> or <a href="pydoc/starpy.menu.html#SubMenu">SubMenu</a>, the result of
calling that option with the AGI and the selected option will be
returned. This same mechanism allows for creating chained
sub-menus like so:</p>
<pre>menu.SubMenu( <br> option='1',<br> menu = menu.Menu(<br> tellInvalid = False, # don't report incorrect selections<br> prompt = ['atlantic',menu.DigitsPrompt(53),menu.DateTimePrompt(time.time())],<br> options = [<br> menu.Option( option='0' ),<br> menu.Option( option='#' ),<br> menu.ExitOn( option='*' ),<br> ],<br> ),<br>),</pre>
<p>which can be used as an option within a higher-level menu.</p>
<p>You can also specify an onSuccess callback in the Option, this will
be called (and it's value returned) if and only if that specific Option
is chosen by the user (it is called only if the Option is not itself
callable (which regular Option instances are not)).</p>
<p>The return value from a Menu is a chain of [ (option, digit), ... ]
pairs for the final option selected from the lowest-level menu.
An ExitOn option triggers a return to a higher-level menu; this is not
reported as a "final" option selection.</p>
<p>The Menu module includes a <a href="pydoc/starpy.menu.html#CollectDigits">CollectDigits</a> class
which may be used either as a top-level Menu or as a SubMenu-wrapped
option in a higher-level menu:</p>
<pre>menu.SubMenu(<br> option='2',<br> menu = menu.CollectDigits(<br> soundFile = 'extension',<br> maxDigits = 5,<br> minDigits = 3,<br> ),<br>)<br></pre>
<p>Eventually the CollectDigits class should support review/cancel
options on completion. It would also be nice to get it to use the
prompt system, but as of yet I don't know of any way to make that work
with multi-character entry during the various sayXXX functions.</p>
<h3>Signalling Errors from FastAGI<br>
</h3>
<p>The FastAGIProtocol has a method <a href="pydoc/fastagi.html#FastAGIProtocol-jumpOnError">jumpOnError</a>
which is intended to be used for implementing the common Asterisk
application pattern of setting priority to some large value beyond the
current value in order to indicate an error in the application.
Yes, it's an ugly way to signal errors, but there it is. To use,
add jumpOnError to a deferred where you want any uncaught exception to
trigger a jump and finish the AGI connection. This would normally
be the overall deferred for your entire FastAGI operation.<br>
</p>
<pre>df.addErrback( agi.jumpOnError, 100 )<br></pre>
<p>If you only want to cause a particular jump on a particular
error/exception or set of exceptions, you can pass in a (tuple of)
error classes in the forErrors argument to which to restrict the jump:</p>
<pre>df.addErrback( agi.jumpOnError, 50, forErrors=error.OnUnknownUser )<br></pre>
<h2>Secondary Services</h2>
<p>The <a href="pydoc/starpy.utilapplication.html">utilapplication</a>
module contains a few simple classes which provide common services for
writing AMI/FastAGI applications. This includes
configuration-file setup of AMI and FastAGI services and an application
instance that provides methods for registering to handle incoming
FastAGI extensions.</p>
<pre># map incoming calls to extension 's' to the given method onS<br>APPLICATION.handleCallsFor( 's', someObject.onS )</pre>
<p>UtilApplication's agiSpecifier and amiSpecifier property point to
automatically generated <a href="pydoc/starpy.utilapplication.html#AGISpecifier">AGISpecifier</a>
and <a href="pydoc/starpy.utilapplication.html#AMISpecifier">AMISpecifier</a>
instances whose parameters are loaded from configuration files.
The specifier instances provide methods for starting up instances
configured by the specifier:</p>
<pre># tell the application to run a FastAGI server which dispatches<br># to handlers registered with handleCallsFor (as above)<br>APPLICATION.agiSpecifier.run( APPLICATION.dispatchIncomingCall )<br><br># tell the application to log into the configured AMI server<br># to allow for further management operations<br>df = APPLICATION.amiSpecifier.login( <br>).addCallback( self.onAMIConnect )<br></pre>
<h3>Simple FastAGI Application Example<br>
</h3>
<p>The following is the hellofastagiapp sample application, it uses the
starpy.conf file in the current directory to control the FastAGI setup,
and shows use of the utilapplication handleCallsFor method, which
allows for a single FastAGI server handling many different FastAGI
scripts (though in this case we only register a handler for one
extension, 's'):</p>
<pre>#! /usr/bin/env python<br>"""FastAGI server using starpy and the utility application framework<br><br>This is basically identical to hellofastagi, save that it uses the application<br>framework to allow for configuration-file-based setup of the AGI service.<br>"""<br>from twisted.internet import reactor<br>from starpy import fastagi, utilapplication<br>import logging, time<br><br>log = logging.getLogger( 'hellofastagi' )<br><br>def testFunction( agi ):<br> """Demonstrate simplistic use of the AGI interface with sequence of actions"""<br> log.debug( 'testFunction' )<br> sequence = fastagi.InSequence()<br> sequence.append( agi.sayDateTime, time.time() )<br> sequence.append( agi.finish )<br> def onFailure( reason ):<br> log.error( "Failure: %s", reason.getTraceback())<br> agi.finish()<br> return sequence().addErrback( onFailure )<br><br>if __name__ == "__main__":<br> logging.basicConfig()<br> fastagi.log.setLevel( logging.DEBUG )<br> APPLICATION = utilapplication.UtilApplication()<br> APPLICATION.handleCallsFor( 's', testFunction )<br> APPLICATION.agiSpecifier.run( APPLICATION.dispatchIncomingCall )<br> reactor.run()</pre>
<h2>Changes</h2>
<ul>
</ul>
<p>StarPy can be downloaded from the project's <a href="https://sourceforge.net/project/showfiles.php?group_id=164040">File
Download</a> area.</p>
<ul>
<li>1.0.0b1</li><ul><li>Provide download link in setup.py to allow easy-install to work</li></ul><li>1.0.0a13</li><ul><li>Godson's Asterisk 1.4.x interface updates</li></ul><li>1.0.0.a12</li>
<ul>
<li>Fix "recursion" bug in menu's onReadMenu</li>
<li>Fix bug in clientConnectionFailed parameters for AMI connections</li>
</ul>
<li>1.0.0.a11</li>
<ul>
<li>Fix bug in fastagi setExtension</li>
<li>Add timeout to manager api</li>
<li>Allow for overriding utilapplication configuration loading (to add new sections, for instance)</li>
</ul>
<li>1.0.0.a10</li>
<ul>
<li>Allow for registering a FastAGI handler for None, is used to
provide a default handler for extensions which do not have an explicit
waiter or handler registered</li>
</ul>
<li>1.0.0.a9</li>
<ul>
<li>Add multi-element prompt capability, so you can use sound
files, numbers, read alpha and similar operations to define a compound
prompt for a menu.<br>
<br>
Note: This change breaks all previously defined menus, you need to
change the "soundFile" property of your menus to be "prompt". You
may (but do not need to) wrap your sound file names in a
menu.AudioPrompt() instance.</li>
<li>Minor bug in onStreamingComplete fixed (variable name shadowed
the module)</li>
</ul>
<li>1.0.0.a8</li>
<ul>
<li>Add password-checking menu operation</li>
<li>Add ability to pass an "onSuccess" handler to a menu option; it
is called before returning from selection of that option</li>
<li>Fix bug in AMI handling of multi-line command results that
include ':' characters</li>
<li>Add example showing usage of ami.command(...)</li>
</ul>
<li>1.0.0.a7</li>
<ul>
<li>Fix bug introduced in a6
where None could no longer be used to
handle all events in AMI</li>
</ul>
<li>1.0.0.a6</li>
<ul>
<li>Fix bug in AMIProtocol.deregisterEvent, would remove all
registrations in all instances<br>
</li>
<li>Add ability to register/deregister multiple events at once in
AMIProtocol.registerEvent and deregisterEvent</li>
</ul>
<li>1.0.0a5</li>
<ul>
<li>Setup script bug-fix for placement of data files (one directory
level too high)</li>
<li>Minor documentation enhancements<br>
</li>
<li>priexhaustion.py example application added (track total number
of open channels)</li>
<li>Bug-fix in AGI getVariable (incorrect/incomplete parsing)</li>
<li>Trivial bug-fix in hellofastagiapp.py (editing problem during
documentation creation)</li>
</ul>
<li>1.0.0a4</li>
<ul>
<li>Fixed naming error on setPriority</li>
<li>Added jumpOnError</li>
<li>Fixes for Call Duration Sample to work with newest code</li>
<li>More documentation</li>
</ul>
<li>1.0.0a3</li>
<ul>
<li>FastAGI's getOption API change, should actually be useful now</li>
<li>IVR Menu and CollectDigits objects first release</li>
</ul>
<li>1.0.0a2</li>
<ul>
<li>Slightly more mature release, a few minor applications have
been built with the package to test out operation, a few bugs have been
fixed.</li>
<li>Call Duration sample application added, note that this requires
<a href="http://basicproperty.sourceforge.net/">BasicProperty</a><br>
</li>
</ul>
<li>1.0.0a1</li>
<ul>
<li>Initial release of the
StarPy package, much of the functionality is still untested, but the
coverage of the APIs should be close to complete.</li>
</ul>
</ul>
<h2>License</h2>
<p>StarPy is licensed under
extremely liberal terms.<br>
</p>
<pre>Copyright (c) 2006, Michael C. Fletcher and Contributors<br>All rights reserved.<br><br>Redistribution and use in source and binary forms, with or without<br>modification, are permitted provided that the following conditions<br>are met:<br><br> Redistributions of source code must retain the above copyright<br> notice, this list of conditions and the following disclaimer.<br><br> Redistributions in binary form must reproduce the above<br> copyright notice, this list of conditions and the following<br> disclaimer in the documentation and/or other materials<br> provided with the distribution.<br><br> The name of Michael C. Fletcher, or the name of any Contributor,<br> may not be used to endorse or promote products derived from this <br> software without specific prior written permission.<br><br>THIS SOFTWARE IS NOT FAULT TOLERANT AND SHOULD NOT BE USED IN ANY<br>SITUATION ENDANGERING HUMAN LIFE OR PROPERTY.<br><br>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS<br>``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT<br>LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS<br>FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE<br>COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT,<br>INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES<br>(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR<br>SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)<br>HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,<br>STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)<br>ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED<br>OF THE POSSIBILITY OF SUCH DAMAGE.<br></pre><p>Contributors include (contributors with an (*) after their name are generally available for consulting work):</p><ul><li><a href="mailto:mcfletch@vrplumber.com">Mike C. Fletcher</a> (VRPlumber Consulting Inc., Canada)</li><li><a href="mailto:godson.g@gmail.com">Godson Gera</a> </li></ul>
<p class="footer"><a href="http://starpy.sourceforge.net/">StarPy</a>
is a <a href="http://sourceforge.net/"> <img alt="SourceForge.net Logo" style="border: 0px solid ; width: 88px; height: 31px;" src="http://sourceforge.net/sflogo.php?group_id=164040&type=1" align="middle"></a> Open-Source Project</p>
</body></html>
|