thedark Second Lieutenant
Joined: 30 Jul 2005
Posts: 1074
|
Posted: Thu Aug 04, 2005 1:28 pm Post subject: ARexx Module |
|
|
AmigaPython includes very powerful ARexx support. Irmen added a low-level builtin module ( ARexxll ) and a high-level module (ARexx , written in Python). You're able to add an ARexx port to your Python programs in no-time, and you're also able to control other applications from Python by sending them ARexx commands to their ARexx port. The ARexx module implements:
port class (generic ARexx port root class)
privateport class (private ARexx port for sending messages only)
publicport class (public ARexx port to receive commands on)
host class (full-featured ARexx host class, including powerful command parser and dispatcher)
wrapper functions for easy ARexx message sending |
|