Metadata-Version: 2.1
Name: jtypes.pyjnius
Version: 1.1.4b4
Summary: Dynamic access to Java classes from Python (ctypes/cffi-based PyJNIus)
Home-page: http://pypi.python.org/pypi/jtypes.pyjnius/
Author: Adam Karpierz
Author-email: adam@karpierz.net
Maintainer: Adam Karpierz
Maintainer-email: adam@karpierz.net
License: MIT License ; http://opensource.org/licenses/MIT
Download-URL: http://pypi.python.org/pypi/jtypes.pyjnius/
Description: **Currently only as placeholder (because a base package jtypes.jvm is still in development)**
        
        jtypes.pyjnius
        ==============
        
        Dynamic access to Java classes from Python.
        
        Overview
        ========
        
          | **jtypes.pyjnius** is a bridge between Python and Java, allowing these to intercommunicate.
          | It is an effort to allow python programs full access to Java class libraries.
        
          `PyPI record`_.
        
          | **jtypes.pyjnius** is a lightweight Python package, based on the *ctypes* or *cffi* library.
          | It is an almost fully compliant implementation of Kivy Team's **PyJNIus** package
            by reimplementing whole its functionality in a clean Python instead of Cython.
        
        About PyJNIus:
        --------------
        
        Borrowed from the `original website`_:
        
          **PyJNIus** is a Python library for accessing Java classes.
        
          A minimal **PyJNIus** example looks something like this:
        
          *Quick overview*
        
          .. --------------
        
          .. code:: python
        
             >>> from jnius import autoclass
             >>> System = autoclass('java.lang.System')
             >>> 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
        
        Requirements
        ============
        
        - Either the Sun/Oracle JRE/JDK or OpenJDK.
        
        Installation
        ============
        
        Prerequisites:
        
        + Python 2.7 or higher or 3.4 or higher
        
          * http://www.python.org/
          * 2.7 and 3.6 are primary test environments.
          * For usage with python-for-android:
        
            #. Get http://github.com/kivy/python-for-android
            #. Install a distribution
        
        + pip and setuptools
        
          * http://pypi.python.org/pypi/pip
          * http://pypi.python.org/pypi/setuptools
        
        To install run::
        
            python -m pip install --upgrade jtypes.pyjnius
        
        To ensure everything is running correctly you can run the tests using::
        
            python -m jt.jnius.tests
        
        Development
        ===========
        
        Visit `development page`_
        
        Installation from sources:
        
        Clone the `sources`_ and run::
        
            python -m pip install ./jtypes.pyjnius
        
        or on development mode::
        
            python -m pip install --editable ./jtypes.pyjnius
        
        Prerequisites:
        
        + Development is strictly based on *tox*. To install it run::
        
            python -m pip install tox
        
        License
        =======
        
          | Copyright (c) 2014-2018 Adam Karpierz
          |
          | Licensed under the MIT License
          | http://opensource.org/licenses/MIT
          | Please refer to the accompanying LICENSE file.
        
        Authors
        =======
        
        * Adam Karpierz <adam@karpierz.net>
        
        .. _PyPI record: https://pypi.python.org/pypi/jtypes.pyjnius
        .. _original website: https://pyjnius.readthedocs.io
        .. _development page: https://github.com/karpierz/jtypes.pyjnius
        .. _sources: https://github.com/karpierz/jtypes.pyjnius
        
        Changelog
        =========
        
        1.1.4b4 (2018-11-08)
        --------------------
        - Synchro with pyjnius master branch.
        - Update of the required setuptools version.
        - Minor setup and tests improvements.
        
        1.1.4b0 (2018-10-26)
        --------------------
        - Synchro with pyjnius master branch.
        
        1.1.2b4 (2018-05-23)
        --------------------
        - Bug fixes in jnius_config.
        - Synchro with pyjnius master branch.
        
        1.1.2b3 (2018-05-22)
        --------------------
        - Update of the required setuptools version.
        
        1.1.2b2 (2018-02-26)
        --------------------
        - Improvement and simplification of setup and packaging.
        
        1.1.2b1 (2018-01-29)
        --------------------
        - Development moved to github.
        - General improvements and update.
        
        1.1.2a0 (2017-04-01)
        --------------------
        - Development version.
        
        1.1.0b2 (2017-01-21)
        --------------------
        - Documentation update.
        
        1.1.0b1 (2017-01-01)
        --------------------
        - First beta release.
        
        1.1.0a1 (2014-11-30)
        --------------------
        - Initial version.
        
Keywords: jtypes, jt, jpype, jep, pyjnius, jpy, javabridge, pyjava, jcc,,py4j, jython, java, pythonjava
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Polish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Java
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: IronPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Topic :: Software Development :: Libraries :: Java Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7.0,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
Description-Content-Type: text/x-rst
Provides-Extra: doc
Provides-Extra: test
