Merge branch 'master' of github.com:kivy/pyjnius

This commit is contained in:
Mathieu Virbel 2012-08-14 18:21:44 +02:00
commit 379c67873b
1 changed files with 19 additions and 0 deletions

View File

@ -1,6 +1,25 @@
PyJNIus
=======
description
-----------
Python module to access Java class as Python class, using JNI.
(Work in progress.)
quick overview
--------------
>>> from jnius.reflect import autoclass
>>> autoclass('java.lang.System').out.println('Hello world')
Hello world
>>>Stack = autoclass('java.util.Stack')
>>>stack = Stack()
>>>stack.push('hello')
>>>stack.push('world')
>>>print stack.pop()
world
>>>print stack.pop()
hello