From: Ype K. <yk...@xs...> - 2001-11-21 19:32:36
|
Alicia, >Hi all > >I am a fourth year cs. I am involved in profiling a jvm using jython and java. When that includes profiling jython on several jvm's many people on this list would be interested in your results. >I have the basics of python down but have found no good tutorials on jython anything out there seems to be confusing and not nearly explained properly. www.jython.org is indeed terse in some respects. However all essential things are there and the site is not so big that you couldn't click through it completely in two hours or so. > Please can anyone out there tell me 1.a good link to a jython tutorial 2.how to compile jython ".py" file Importing a module in another module executing in jython will give you a $py.class file that is compiled from the .py file just as cpython gives you a .pyc file. You can also use jythonc directly: http://www.jython.org/docs/jythonc.html Good luck, Ype |