From: Robert W. B. <rb...@di...> - 2001-11-03 14:17:48
|
On Sat, 3 Nov 2001, Ronald D Stephens wrote: > Will the Python libraries work well with Jython? I am particularly interested in whether urllib > works under Jython. In other words, will a Python program that uses urllib but is otherwise pretty > simple and straightforward be likely to work as a Java program after being complied using > jythonc? > > Ron Stephens > http://www.awaretek.com Yes, something using urllib is likely to work as a Java program when statically compiled with jythonc. There's always exceptions of course, like some methods are trouble in an applet (e.g. retrieve won't work as an applet because it opens a file, and applets don't normally have access to the local filesystem). -robert |