Skip to main content

A Python module to access Java classes as Python classes using JNI.

Project description

PyJNIus

A Python module to access Java classes as Python classes using the Java Native Interface (JNI). Warning: the pypi name is now pyjnius instead of jnius.

Tests Builds PyPI Backers on Open Collective Sponsors on Open Collective

Installation

pip install pyjnius

Quick overview

>>> from jnius 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

Usage with python-for-android

Then, you can do this kind of things:

from time import sleep
from jnius import autoclass

Hardware = autoclass('org.renpy.android.Hardware')
print 'DPI is', Hardware.getDPI()

Hardware.accelerometerEnable(True)
for x in xrange(20):
    print Hardware.accelerometerReading()
    sleep(.1)

It will output something like:

I/python  ( 5983): Android kivy bootstrap done. __name__ is __main__
I/python  ( 5983): Run user program, change dir and execute main.py
I/python  ( 5983): DPI is 160
I/python  ( 5983): [0.0, 0.0, 0.0]
I/python  ( 5983): [-0.0095768067985773087, 9.3852710723876953, 2.2218191623687744]
I/python  ( 5983): [-0.0095768067985773087, 9.3948478698730469, 2.2218191623687744]
I/python  ( 5983): [-0.0095768067985773087, 9.3948478698730469, 2.2026655673980713]
I/python  ( 5983): [-0.028730420395731926, 9.4044246673583984, 2.2122423648834229]
I/python  ( 5983): [-0.019153613597154617, 9.3852710723876953, 2.2026655673980713]
I/python  ( 5983): [-0.028730420395731926, 9.3852710723876953, 2.2122423648834229]
I/python  ( 5983): [-0.0095768067985773087, 9.3852710723876953, 2.1835119724273682]
I/python  ( 5983): [-0.0095768067985773087, 9.3756942749023438, 2.1835119724273682]
I/python  ( 5983): [0.019153613597154617, 9.3948478698730469, 2.2122423648834229]
I/python  ( 5983): [0.038307227194309235, 9.3852710723876953, 2.2218191623687744]
I/python  ( 5983): [-0.028730420395731926, 9.3948478698730469, 2.2026655673980713]
I/python  ( 5983): [-0.028730420395731926, 9.3852710723876953, 2.2122423648834229]
I/python  ( 5983): [-0.038307227194309235, 9.3756942749023438, 2.2026655673980713]
I/python  ( 5983): [0.3926490843296051, 9.3086557388305664, 1.3311761617660522]
I/python  ( 5983): [-0.10534487664699554, 9.4331550598144531, 2.1068975925445557]
I/python  ( 5983): [0.26815059781074524, 9.3469638824462891, 2.3463177680969238]
I/python  ( 5983): [-0.1149216815829277, 9.3852710723876953, 2.31758713722229]
I/python  ( 5983): [-0.038307227194309235, 9.41400146484375, 1.8674772977828979]
I/python  ( 5983): [0.13407529890537262, 9.4235782623291016, 2.2026655673980713]

Advanced example

When you use autoclass, it will discover all the methods and fields of the class and resolve them. You may want to declare and use only what you need. The previous example can be done manually as follows:

from time import sleep
from jnius import MetaJavaClass, JavaClass, JavaMethod, JavaStaticMethod

class Hardware(JavaClass):
    __metaclass__ = MetaJavaClass
    __javaclass__ = 'org/renpy/android/Hardware'
    vibrate = JavaStaticMethod('(D)V')
    accelerometerEnable = JavaStaticMethod('(Z)V')
    accelerometerReading = JavaStaticMethod('()[F')
    getDPI = JavaStaticMethod('()I')

# use that new class!
print 'DPI is', Hardware.getDPI()

Hardware.accelerometerEnable()
for x in xrange(20):
    print Hardware.accelerometerReading()
    sleep(.1)

Troubleshooting

Make sure a Java Development Kit (JDK) is installed on your operating system if you want to use PyJNIus on desktop. OpenJDK is known to work, and the Oracle Java JDK should work as well.

On windows, make sure JAVA_HOME points to your java installation, so PyJNIus can locate the jvm.dll file allowing it to start java. This shouldn't be necessary on OSX and Linux, but in case PyJNIus fails to find it, setting JAVA_HOME should help.

Support

If you need assistance, you can ask for help on our mailing list:

We also have a Discord server:

https://chat.kivy.org/

Contributing

We love pull requests and discussing novel ideas. Check out our contribution guide and feel free to improve PyJNIus.

The following mailing list and IRC channel are used exclusively for discussions about developing the Kivy framework and its sister projects:

License

PyJNIus is released under the terms of the MIT License. Please refer to the LICENSE file for more information.

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyjnius-1.2.1.tar.gz (41.0 kB view details)

Uploaded Source

Built Distributions

pyjnius-1.2.1-cp38-cp38-win_amd64.whl (207.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyjnius-1.2.1-cp38-cp38-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pyjnius-1.2.1-cp38-cp38-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8

pyjnius-1.2.1-cp38-cp38-macosx_10_13_x86_64.whl (264.0 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

pyjnius-1.2.1-cp37-cp37m-win_amd64.whl (202.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyjnius-1.2.1-cp37-cp37m-manylinux2010_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

pyjnius-1.2.1-cp37-cp37m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m

pyjnius-1.2.1-cp37-cp37m-macosx_10_13_x86_64.whl (259.2 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

pyjnius-1.2.1-cp36-cp36m-win_amd64.whl (207.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyjnius-1.2.1-cp36-cp36m-manylinux2010_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

pyjnius-1.2.1-cp36-cp36m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6m

pyjnius-1.2.1-cp36-cp36m-macosx_10_13_x86_64.whl (273.9 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

pyjnius-1.2.1-cp35-cp35m-manylinux2010_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

pyjnius-1.2.1-cp35-cp35m-manylinux1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.5m

pyjnius-1.2.1-cp34-cp34m-manylinux2010_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.4m manylinux: glibc 2.12+ x86-64

pyjnius-1.2.1-cp34-cp34m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.4m

pyjnius-1.2.1-cp27-cp27mu-manylinux2010_x86_64.whl (915.3 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

pyjnius-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl (915.3 kB view details)

Uploaded CPython 2.7mu

pyjnius-1.2.1-cp27-cp27m-manylinux2010_x86_64.whl (915.3 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

pyjnius-1.2.1-cp27-cp27m-manylinux1_x86_64.whl (915.3 kB view details)

Uploaded CPython 2.7m

pyjnius-1.2.1-cp27-cp27m-macosx_10_13_x86_64.whl (258.2 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

File details

Details for the file pyjnius-1.2.1.tar.gz.

File metadata

  • Download URL: pyjnius-1.2.1.tar.gz
  • Upload date:
  • Size: 41.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1.tar.gz
Algorithm Hash digest
SHA256 3a49fde713b9504092886097962f8c6a3dfe3ab87ee59f1ddd7a02baa6263e24
MD5 8f6a0890ccaddccee4259e0837e1a699
BLAKE2b-256 b2c3a2b122da2536168241bf823f5d6fc7a7cf1da82eecadcf6ebe535ed28093

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 207.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 de0e7251c306faf960d37d31a588edd3e10cfa6edcae91822d72a9f47b9739b3
MD5 5b97f4b9612ebbedb6907cbf0345061f
BLAKE2b-256 94cd9cd4ef69eb3140d40456d3ae6f23569447017e90cb002379cb3370d8db77

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4e6731fba2f98cb7e87666edd38559b88261a7dcb66c24bfa7ace8b23a182914
MD5 1a3b1391305d81ed8d2b0890b2b11498
BLAKE2b-256 1034563681c020febd62c20d252bc865b249b5ef29910c9d430130e2eb27d91e

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7022591c1e38affe881a2311d377694edb42589c582c52d377c2c4041d85dd23
MD5 22abe36021f2e417cea270d4a200a754
BLAKE2b-256 782954484b955ef93582f595f6ea0bb5999882365c1e56b86dcf875a749bf53f

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 264.0 kB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5d7cda4c1ccc6b7c1eca8d60e0bd06bc825588aecc3e882943f4a79d854fca6d
MD5 6d235ef8350ae0c79d86bf6b928aefef
BLAKE2b-256 8b1c74ed11ab293d2e72ec10a53305924334e94e6994ba8f9501bc43d9e48e95

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 202.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1f6701596218421c02a18050983009b2e54e7b0e3c564d5e98a486e18cfeb47e
MD5 b6588a1e0ee8e81f841d2125ab4319ce
BLAKE2b-256 c4da4db9f77be5d463d56183006c0ef1f586236d26a01d275dd931618adbb1cb

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1aada711a06b0c11c33a215e4d5abad94e45e7a0ec4c02cfc2aa31c018bdc95e
MD5 fb442700f7649e5bf70d8996f17fa9fc
BLAKE2b-256 38c915481d419e2675b6aac764c2f3547996ab8e1a03c08a5e490e66ddf5a40c

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 87f54b62581d32b512add08127a11f8ace0a6f042d7d650127e85a7ee51ac8f7
MD5 5166ab3ba43e8733b47d2008ef15d0cf
BLAKE2b-256 b6aaf53260b7c527e48e22f1149069d142a1609414653421aa07063f0a42f710

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 259.2 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 100057323cec78eda64b7fe629d8bf0fc09687cacef24cd25e983367d467ba7a
MD5 c4dc04202b369e5b9a2b359c9d79bfdf
BLAKE2b-256 fbc47b34034ea7eb3a57313f7c616bea62f9f2f1434f5e8084b60474127d90c3

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 207.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 60df1b81af2d453152792dd153914500b062f15f44159c6a39ee10b2576cae6c
MD5 0638462ca7eec993ca47bcf753a24eb9
BLAKE2b-256 2303d783dadd3bb2c8adedb6eff375c57f97afa3059df1814646f74dc3463161

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8bc4e6499b29b74e3b38614fdc1643afa17dfa4755e24682c8f829106b4d51a2
MD5 26809f974527e7a4da977c4a37e5f98e
BLAKE2b-256 e84fe3d9f4bb53f7f1854f81a279c274c4ad8537e4d71117258515158403bc10

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 16305191a05b71ef565baf8cd8945f88d85f8f4b8aacecdfbcdd5f4f09853280
MD5 97efab81c0989aab67814d8001bbbd4d
BLAKE2b-256 884dc402283215033f51543a141c377116db036745fedc32af25bc78278f4837

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 273.9 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 37897af8b5fbff19ce10ca2870d29152aee8f5e1f77b4bcd561b9208c36c4e4e
MD5 2e42b24d843706108010bb49c79bc0b8
BLAKE2b-256 2e2d1dd4a974e882e2ae3f3db5fdc18b37a61e2ff995b1996f029b039e12e9d3

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3c770933f3f9cb8abf3871a8fd91ae23e93276deef6f6ef518bbdb62fb4af3c5
MD5 ad4235e6420356de1b5f0f6cbab69966
BLAKE2b-256 1b1915d76d877c827b1c8bf587a896ea789913dc646bb38a7a63ba2955908d78

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 83d3300a7352b9e6fd555d2fecd4831f1d28d9f1c055ab7af11ebc68b98050ab
MD5 e9557bb4f0dc6c781f33b61afe502af5
BLAKE2b-256 323155d63a9521610c37040c535297288228bd3dbce52e1cdb67772f10121ac7

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp34-cp34m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp34-cp34m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.4m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp34-cp34m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6f82c06ab2946d190987847aaa21f3dc2df49cd776da24c924544c4a01797575
MD5 33acb7d0e5f7645b10af07421c13873e
BLAKE2b-256 eee47d515702300e5b20fea42c8b55d952f026fdbcb2a80d04593db6ee22075b

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15+

File hashes

Hashes for pyjnius-1.2.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef8acab01f9a23f35a3f202ca4fdb3f1f2f3f81754b046ae1e8fc1850d53dc0b
MD5 6cc6e0968bb17f8baee434adee9865ca
BLAKE2b-256 99b47027c5579b170f7476319dcf73009e1ee81b490e9bf9a5ffacb02bd0f03f

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 915.3 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ced833dbac7660a0ec9ca505bafa2fa094c68d15f25a5c2848b614ccd6fa260a
MD5 0d70d66fd880489333846b32152bc59c
BLAKE2b-256 faa2c9627315eeb7e2f1d0ed2462efdf29481ad045ba33bc27e4b0f9fbb9d2c2

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 915.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3ee9a7d3a0a7cba021e44d58f8ba49adb165499b326de137abd14099a5ad87e1
MD5 8bee0fc4a8b4d66e8521e10860ffc4bc
BLAKE2b-256 0b6e6cd69d3697ef52c8d30576ac46123532fc091b10e1dc58ae820ecf6633b4

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 915.3 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 19bc5135b7d9e791d8950dde8d9a258d22653080f9342d194aa7cf6f7181217e
MD5 a852c736b840cb670fde7dfbf3b3edf6
BLAKE2b-256 121702ac3771517dd512851bf480155ed8e49b65d3a1b88762ef7282e81f95ea

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 915.3 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4d4b5ee12c0ab420131f844e838e9e171efaa9834c86a183391d87fb08f24395
MD5 da7e708dc2e077540cc38e4da957e9d7
BLAKE2b-256 6858e9314d03c0e9c509ef3d26dbf64ab34a9c3d27bcbcea6f87a16eeda86480

See more details on using hashes here.

File details

Details for the file pyjnius-1.2.1-cp27-cp27m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pyjnius-1.2.1-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 258.2 kB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.5

File hashes

Hashes for pyjnius-1.2.1-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9ecfa2286234b54f09d9141afc649ba3e77e4efe0303fb8a40a90397fa716c0f
MD5 f49e4972fa4523a96db6b8a5d231f8db
BLAKE2b-256 4761f3384e3eec87df9d4267ebeb42460a850e7dda7ab9877f1e172dbc0bb7b4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page