File: PyScriptTest.py

package info (click to toggle)
python2.1 2.1.3-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 33,848 kB
  • ctags: 64,354
  • sloc: python: 186,805; ansic: 184,797; xml: 43,435; sh: 3,875; makefile: 3,118; perl: 3,108; lisp: 2,460; cpp: 106; sed: 2
file content (25 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (4)
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
'''
Minimal test module
'''#

import sys
import PythonScript

SIGNATURE = 'MACS'
TIMEOUT = 10*60*60

PythonScript.PsScript(SIGNATURE, TIMEOUT)
p = PythonScript.PyScript
ev = PythonScript.PsEvents
pc = PythonScript.PsClass
pp = PythonScript.PsProperties

startup = str(p(ev.Get, pc.Desktopobject(1).Startup_disk().Name()))
print 'startup',startup, type(startup)
print p(ev.Get, pc.Disk(startup).Folder(7).File(1).Name())
print p(ev.Get, pc.Disk(1).Name())
print p(ev.Get, pc.Disk('every').Name())
print p(ev.Make, None, New='Alias_file', At=pp.Desktop(''), To=pp.System_folder(1))

sys.exit(1)