AW: Android

2012-03-16 Thread Szabo, Patrick (LNG-VIE)
You might be interested in this:

 

http://www.linuxjournal.com/article/10940 
  

 

I had this installed on my Desire and it ran pretty nicely. 

 

regards

 

Von: python-list-bounces+patrick.szabo=lexisnexis...@python.org 
[mailto:python-list-bounces+patrick.szabo=lexisnexis...@python.org] Im Auftrag 
von Peter Condon
Gesendet: Freitag, 16. März 2012 10:21
An: python-list@python.org
Betreff: Android

 

Dear Sirs,

 

I am a new student learning this and am getting an Android tablet for my 
birthday will python be able to run on android?

 

Kindest regards

 

Peter

 

This email and any attachments to it may contain information which is 
confidential, legally privileged, subject to the Official Secrets Act, or 
otherwise not disclosable by law, and is protected by copyright. It is intended 
only for the addressee named above. If you are not the intended recipient you 
must delete this email immediately and not use, distribute, copy, disclose or 
take any action in reliance on this email or its contents. If you have received 
this email in error please notify us by return email immediately. 

Airwave Solutions Limited a company registered in England and Wales having 
company number 03985643. 

Registered Office: Airwave Solutions Ltd, Charter Court, 50 Windsor Road, 
Slough, Berkshire, SL1 2EJ.

 


. . . . . . . . . . . . . . . . . . . . . . . . . .
Ing. Patrick Szabo
 XSLT Developer 
LexisNexis
A-1030 Wien, Marxergasse 25

mailto:patrick.sz...@lexisnexis.at
Tel.: +43 1 53452 1573 
Fax: +43 1 534 52 146 





-- 
http://mail.python.org/mailman/listinfo/python-list


Windows Contextmenu

2012-03-13 Thread Szabo, Patrick (LNG-VIE)
Hi, 

 

I wrote the following Script which I want to run from the open with
contextmenu in Windows. 

For that purpose I used py2exe to make an exe out of it. 

 

import sys, time, webbrowser

 

def main():

for para in sys.argv[1:]:

print sys.argv

print "###"

print para

url = "http://production.lexisnexis.at:8080/cocoon/glp/html/%s";
% str(para).replace("R:\\", "").replace(".xml", ".html")

webbrowser.open_new(url)

time.sleep(10)



if __name__ == "__main__":

main() 

 

Now the script runs fine but I don't get all arguments from sys.argv.

No mather how many files I mark in the explorer I only get one as an
argument. 

 

Can anyone tell me how to overcome this issue ?

 

Best regards

 

 


. . . . . . . . . . . . . . . . . . . . . . . . . .
Ing. Patrick Szabo
 XSLT Developer 
LexisNexis
A-1030 Wien, Marxergasse 25

mailto:patrick.sz...@lexisnexis.at
Tel.: +43 1 53452 1573 
Fax: +43 1 534 52 146 





-- 
http://mail.python.org/mailman/listinfo/python-list