Closedown

This commit is contained in:
x03daop
2015-03-26 16:19:45 +01:00
parent 48af97c3cc
commit e6fcd60b61
18 changed files with 260 additions and 0 deletions

42
script/test/script.py Normal file
View File

@@ -0,0 +1,42 @@
import sys
import time
#To add library folders from within the script
#sys.path.append("./site-packages")
import requests
r = requests.get('https://api.github.com', auth=('user', 'pass'))
print r.status_code
print r.headers['content-type']
r.close()
def calc2(a):
return a*2
time.sleep(2)
#import os
#print os.environ
#import calc
lib.load("calc")
lib.load("cls")
time.sleep(2)
for x in range(3):
print x
while(True):
print x*2
break
time.sleep(2)
x=cls()
x.execute()
print dev.take()
print dev2.val
time.sleep(1)
print calc(4)
"""
It lives!!!!
"""