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 Tests (x86) 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

  • Get python-for-android
  • Compile a distribution with kivy (PyJNIus will be automatically added)

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)

You can use the signatures method of JavaMethod and JavaMultipleMethod, to inspect the discovered signatures of a method of an object

>>> String = autoclass('java.lang.String')
>>> dir(String)
['CASE_INSENSITIVE_ORDER', '__class__', '_JavaClass__cls_storage', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__javaclass__', '__javaconstructor__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__pyx_vtable__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__setstate__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'charAt', 'checkBounds', 'clone', 'codePointAt', 'codePointBefore', 'codePointCount', 'compareTo', 'compareToIgnoreCase', 'concat', 'contains', 'contentEquals', 'copyValueOf', 'empty', 'endsWith', 'equals', 'equalsIgnoreCase', 'finalize', 'format', 'getBytes', 'getChars', 'getClass', 'hashCode', 'indexOf', 'indexOfSupplementary', 'intern', 'isEmpty', 'join', 'lastIndexOf', 'lastIndexOfSupplementary', 'length', 'matches', 'nonSyncContentEquals', 'notify', 'notifyAll', 'offsetByCodePoints', 'regionMatches', 'registerNatives', 'replace', 'replaceAll', 'replaceFirst', 'split', 'startsWith', 'subSequence', 'substring', 'toCharArray', 'toLowerCase', 'toString', 'toUpperCase', 'trim', 'valueOf', 'wait']
>>> String.format.signatures()
[(['java/util/Locale', 'java/lang/String', 'java/lang/Object...'], 'java/lang/String'), (['java/lang/String', 'java/lang/Object...'], 'java/lang/String')]

Each pair contains the list of accepted arguments types, and the returned type.

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.6.0.tar.gz (63.3 kB view details)

Uploaded Source

Built Distributions

pyjnius-1.6.0-pp310-pypy310_pp73-win_amd64.whl (204.8 kB view details)

Uploaded PyPy Windows x86-64

pyjnius-1.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (252.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyjnius-1.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (240.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (220.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjnius-1.6.0-pp39-pypy39_pp73-win_amd64.whl (204.3 kB view details)

Uploaded PyPy Windows x86-64

pyjnius-1.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (252.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyjnius-1.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (239.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (220.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjnius-1.6.0-pp38-pypy38_pp73-win_amd64.whl (205.8 kB view details)

Uploaded PyPy Windows x86-64

pyjnius-1.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyjnius-1.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (246.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (223.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjnius-1.6.0-pp37-pypy37_pp73-win_amd64.whl (205.7 kB view details)

Uploaded PyPy Windows x86-64

pyjnius-1.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyjnius-1.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (246.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (223.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjnius-1.6.0-cp312-cp312-win_amd64.whl (223.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyjnius-1.6.0-cp312-cp312-win32.whl (194.2 kB view details)

Uploaded CPython 3.12 Windows x86

pyjnius-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyjnius-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-cp312-cp312-macosx_10_9_x86_64.whl (277.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyjnius-1.6.0-cp312-cp312-macosx_10_9_universal2.whl (516.7 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

pyjnius-1.6.0-cp311-cp311-win_amd64.whl (222.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyjnius-1.6.0-cp311-cp311-win32.whl (190.6 kB view details)

Uploaded CPython 3.11 Windows x86

pyjnius-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyjnius-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl (278.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyjnius-1.6.0-cp311-cp311-macosx_10_9_universal2.whl (514.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

pyjnius-1.6.0-cp310-cp310-win_amd64.whl (221.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyjnius-1.6.0-cp310-cp310-win32.whl (191.3 kB view details)

Uploaded CPython 3.10 Windows x86

pyjnius-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyjnius-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl (276.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyjnius-1.6.0-cp310-cp310-macosx_10_9_universal2.whl (512.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

pyjnius-1.6.0-cp39-cp39-win_amd64.whl (222.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyjnius-1.6.0-cp39-cp39-win32.whl (191.6 kB view details)

Uploaded CPython 3.9 Windows x86

pyjnius-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyjnius-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-cp39-cp39-macosx_10_9_x86_64.whl (277.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyjnius-1.6.0-cp39-cp39-macosx_10_9_universal2.whl (513.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

pyjnius-1.6.0-cp38-cp38-win_amd64.whl (222.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyjnius-1.6.0-cp38-cp38-win32.whl (191.5 kB view details)

Uploaded CPython 3.8 Windows x86

pyjnius-1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyjnius-1.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-cp38-cp38-macosx_10_9_x86_64.whl (275.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyjnius-1.6.0-cp38-cp38-macosx_10_9_universal2.whl (509.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

pyjnius-1.6.0-cp37-cp37m-win_amd64.whl (216.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyjnius-1.6.0-cp37-cp37m-win32.whl (188.7 kB view details)

Uploaded CPython 3.7m Windows x86

pyjnius-1.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

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

pyjnius-1.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyjnius-1.6.0-cp37-cp37m-macosx_10_9_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyjnius-1.6.0.tar.gz
  • Upload date:
  • Size: 63.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0.tar.gz
Algorithm Hash digest
SHA256 0b7dbe3d8f58bbb7bec30c858f3fa789bcc1c1ec4931958e9f7b87f45ea14033
MD5 da77fa06650a1c5d3ac1398b7858a94c
BLAKE2b-256 68e3167830a0fce4d0db898222df89d59077f3bd268f9b5498ab90870e2f5226

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 01fd47afce11f507ad401c67d7b60fe95f2502383793647c7cba53667a9643c9
MD5 31c7bf94fdbfc71538089caedf5df5f7
BLAKE2b-256 03f8a5138c9c8442522bd3dd016b379301a92302cc16d2342ffb8da3b173404b

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 091c5e9ea72b5002d5db36cb2e1daf1ef59234877b265c1d9e959b889dcec32a
MD5 fec2dd0870fdb024f1aba431c6b9ce9f
BLAKE2b-256 da3a479556b58852dbb92e26a573e329b7f9d0a628252978bb515a17d094c944

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e5c3b1ef02473ce22f408343e681620486ababd4ef982083e37524614ec20c9
MD5 7b2203e2705364908b2411c8cf3d88f5
BLAKE2b-256 70a081f84ffc320914f225fb6d117187c0ee83c445a86edd8055bd0e315a612c

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 645c83379981734cdec377f706b8ee26433f7cede9c851b67c117b8c34f75f0e
MD5 36dcfe6d53a5e894d9d24788f3c91295
BLAKE2b-256 acb03c2d297dc21a12117df2ac498019b07dc8a1320237de863aca3ce015c152

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 60eb47e17be365b21cd3e8397367f2669ff1c8a958745f8615e1ed0964fca01c
MD5 cb54ea39e23584c712a4c22740bac862
BLAKE2b-256 f4279e26893f09e86a5391c3044bf7719bfc91603948312d77a9320841b2e833

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3458515bc22782adf33835dd967594d507ad74249594df8eaebd1bd37fc902e9
MD5 2670bc57a464ae50ee1828020665b75f
BLAKE2b-256 36f9e092976e7664f11af41c1c6247d89ebf796472e5abb8ff4f83e430f0f9f6

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5edca8e157ef7f73588a4fe2bbd091013c074ee273d5b0b58f7ea6c2a5daf35
MD5 84daae0e264062c1a14ebfc94ad0170e
BLAKE2b-256 684213f11d3cfb342b03cfd8ab6bc8b14f994a1f2897316028d1d85cbe1812d8

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0d052d1ba1df6361a7b15a5e343aa88c77eb1b06cb850873ecba8d351039e2c
MD5 329a75d895f8d0f74b335229b00f4c6a
BLAKE2b-256 fc30437726329602ed5b092f55fbdc4beaf715e2b74d565432fd5c1f96e0bbb2

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 10a9f12cb75bf5ef6e075bdd267bdbfecd53ac78f72a729ba1a4b3654f092983
MD5 1689b5b9a416572bd19736c1ab8d99ad
BLAKE2b-256 befcda5013129f438d25bc38ef345d730de29bd58b83ca556cf45f55f8380f91

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05aa0669e328cdc7d4d9cf3b711cdb5157915942159667b96e0363e0ba31c911
MD5 2942bba92e1d59d4f63af8c76d6eee00
BLAKE2b-256 676e81471817aa5cfeef85b70b1add7930a69c7707609ad0b94dd5957c3bd0d9

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 201be1f31efa308493fa313ebf6b2a0d79a472739a589b2bd4290aaca09d974c
MD5 5f4741a43bf2639d1cf8069f5409bba4
BLAKE2b-256 8f23f3356aae77069bf0230c3a5d981116ec383ed3f4f59113145e7703959d0f

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 558dd7a4d3dbbe994d338bfb95c60ae23b3c8f2e5fd105f55031894472f2320e
MD5 63a50d4aabc040627f8d512341937b00
BLAKE2b-256 7d9d7efcc99da9d00edb261db31d4283e5c38371ef777696d796a69043c1b35e

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bfe5159d20d6550966dd46b3cb622e8c9801a8cc8a4f58cb36df3eae09a3e53b
MD5 154a8a3cea77e927b0217a206fa80b52
BLAKE2b-256 3ccabae7cff109748e915b007308d28da96eb9cf38d86fe3855a0565a857d7b5

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ce7a1f84168f6a52b477c71f5e4c8c0a2ec34472f9ba9e8e7588e94284bd61f
MD5 b5f230e38815882e255a17a38e3a23fb
BLAKE2b-256 97aa1d95114adbbf9c83ea98733272e2fcba9f3f5de07637ad9cccb0cd9ef1ca

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36d68d80db3b02ad32a41976f6159e3b48da16994c51304cb20d5e30d4b20152
MD5 5e011411ba6a6fcc5d661926d4511bbc
BLAKE2b-256 41eb0d851b653d4c07be8a10304abf7db097d3596bf4da2e144944b83205d9fa

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60dd3484551e13d27731b9b8b4c88e1a97bf8e6fb11ac2cfac32aea6ae854636
MD5 ec00579faa215b2962dcda41525d70fb
BLAKE2b-256 6e0842f81bcf2393983edaca9e5ff7a218a3c2105f7eef76a49bc6a196125774

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 223.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d5c20fbc4e0e137a52ce31146862d87aa35c75100717cef18f272fa43f2bee1d
MD5 fa0d49eee22b81ba27bf2c44cd52f0d2
BLAKE2b-256 cda19830938d3a1216cd02fe6cd124445dc0f243278f8ffea65e624e40b7f83b

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 194.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3c9bcd0b686c38b27ea24e4a637c27b2b4e58eea5858ee476adf917d4c2b63b2
MD5 aa4ab18a22f39ddfaa0320e620df81fa
BLAKE2b-256 1b4c30c9cef008712192f754bfe6d1745a6d3f94be04abd5d44452a8f46caa5a

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 333084ab3bbc41fbb8b102860dfefbf70f4be8ed9b9c0aaf39ebbeaf44572a15
MD5 c63bcd355be5df08be2e0b4742217024
BLAKE2b-256 8df1d7ffb870243a4a7212d8cc909c15b552fcd2dba2960e804ce04a06d162cf

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac0186cb258678cee434cefd8d1a56bc8be4b9a977506cc87517015a5e2c7dd2
MD5 cbb5c07bfec5913d643d722b43a714db
BLAKE2b-256 4938efa9b30debc7fc7580a579f50231ed17d51137a246b6d1fd2eacd19a7f8a

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0e9ff9ee5902f3cba04d12c05b3612f611aad78e121b0d4a7b249c0a4c67238
MD5 a0c500bb30a23ede01561cb61006bcaf
BLAKE2b-256 5026e29c468dd58314b6e818abb194f160d3ac083d219dc06a5c209fd5cf4974

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 539f50f5cebb7bf0d200b69411e26a68935eb6c3264842a32f34d15421b790ec
MD5 78f1b9432993438d471b713e9a913fda
BLAKE2b-256 2b9599765e75e64adfc022bc5513083de376048fe941fcc2bba30e3293ef1d97

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 222.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ff380699755ccdf769df66a1c11746398e7d9e6aa56005fb2d2fd36fd6b988c9
MD5 6d57193e1b4cd0b95aa7e8159f614d4d
BLAKE2b-256 7180b9e6e5eb7144e202593504f9b85c00898a7b8fe43511e6791f5148acbf0d

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 190.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 625c6f8251e9f75470d70dc4f4b0fd939c553dd7c2dfea73fa129c20820e3a5c
MD5 634aed4514f154e5099057beb06aca96
BLAKE2b-256 f712f0dcda35dd086eeeb629f2199b16ee1abc009b28a78d08ac43d3ff2d7d32

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a45539a6ba95cbb6f2cd0fe5439a4f3e9576c6472d0a2a8166658a6522ae8510
MD5 4d94923db2fab324634940a4162ba15b
BLAKE2b-256 6f676bcf711774d4c6cd1dc102d6f007e9bc07e2fbd0082ec75b70c4b112088b

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6e3f17475bda18fe9ebe8ec444da3b8218e801c1e1bc05e58e879cbe296724f
MD5 46a2327fe71494c8700a4a161a8e0073
BLAKE2b-256 862b26f0cce2d68ee85d19f4fbb1d0193c373d6ef14306eb4eea06bcc7a8f877

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f55e8433d9418447a2ca762ee3f23ac856ed42e3d31b63b152a97b391e59e91
MD5 1ce4c0289b469434c5da34054f67b658
BLAKE2b-256 20f073c2129558a83267111f2b72498e91a582f67c7758b284d0b064f3d13a97

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f37095a04f6c339710f6d353deb096be2c0987ec1f96d2ba375034d0e98cb9d6
MD5 8820f478692fa603cc28fa3ccf74b1e5
BLAKE2b-256 8d90480684ffd01eb9a306fd184fa9cb2a67ed75f9068d3654b699b3a388af4c

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 221.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c64e85d9377ed4569d57cc6240b2f5255543d5f10c0c843d16f2d13779cf74e
MD5 5bda8b6bab623fd95a10b8f6b82322a0
BLAKE2b-256 8c90fb37f402f43f67080cb1932462add04179b848c90661d45672d646f4065e

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 191.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 64bd8a551cd1cca06ba5349528a58028efe660417a52e3571b691ea6c28febe3
MD5 9da5f7692799634dbb18d00615618b99
BLAKE2b-256 c7c047bba1c673715a35f4d857296ab6f934cbe9ea41125fd8f9ba8bffa7bcec

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddcd07656428d4bdd226a54911a5dc6e4c2580f35fa6df996ee5268caf3a92f6
MD5 0ec89a015dc783a734088969460e9b1d
BLAKE2b-256 8c62b61463b427e5dadca5b9e1b516841a5f895d893498f898608500608eae18

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e18bbeff0706403494ddcaf35a8d88302e85e11f479da54bd9bbf465aa49e471
MD5 1bfab328246f8f11dc4b3b6892eb4c02
BLAKE2b-256 7c640422bc8da13d8c24ca720521bf0236d99db740e969bda976b52386d07b7a

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dc64c4b5edb8af960dedbfbe185395b99b4f13652872f5b7e27730c2f90d3b3
MD5 9fb5f09599fe5dd9143a32067d725362
BLAKE2b-256 e6383e679c72c7dc33be886973464f515a9a1b27caf9be5cfc4edb02a1466913

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2960514ac4b95c77f5f921b3ff55007cdfe40e2585d2641425d864d25bb66525
MD5 74cb91a6cc74b947c74f7bd6111c5b23
BLAKE2b-256 dcf7303356d9c783c50e5251e0f95a57a9469d54c1fc3f9de5f21f608e600868

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 222.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5710f49fd35d6a5352889bfd16f663a5600ad39482a333390ad6ef4272d0c3bf
MD5 ad12d4ce88059bcc24dc31a2ddba5d2d
BLAKE2b-256 2e295055342da72755d115453aea0ae94cdb3c7dd3b6739ee257bfb2c5870fc9

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 191.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3c8dabcb2b8156be741da816338befccdd53ccec6d78eb0768d9ea31c181820d
MD5 613c45493bec51648ae307005e9f218f
BLAKE2b-256 8b2e91124daa07e43af57f4a168687f1928fef6ab573f194b72beefaccfdcabe

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6486e1b95cc0b2ad220bac9a645f5171b91c5431a6696d58312ff2efdd10fe3
MD5 2f18cbd37d797445c066b95313aa4afe
BLAKE2b-256 0dd9f1260479e765f99af3a268a3b1642987eebb6167f8ce0cf28a2be4188077

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51004488858c22b7248b07fef3f505915ee1dad12b9dd5efe3fd779fc0ddd87a
MD5 a86aa1247dd2d62941f35ae1f2a13fba
BLAKE2b-256 2e45f5895ad345f4507cca9eca600eb271ba92aa63659bff9518c2ec13320dc0

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6fcfb1701c14eb34d9d69b5cd5819b67d332a7c5c344dc308304efbab08b40c
MD5 cf830b141f05adabc50a845fd91601ad
BLAKE2b-256 070d9c1e04c4fc3b8b4ba34ad4cb89dad0d77d2d626def7e0524eb17e3d76584

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e506285d2540029ecd2745f2503bfd9940ae3a24e9e9b44fc98f116589fb3e0a
MD5 49e8753a46f052d00c4cb29fb4699906
BLAKE2b-256 87982fd083117c1c6be95a5a82e2203746201276900b5e67ac80e5841e8cce47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjnius-1.6.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 222.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c77610769ec13ad6f61c97d420e6ab0f726b39f86feb77e1a0ac0eba6b53c630
MD5 8105af6b1a6adf7a449452e0c4697075
BLAKE2b-256 2c723d4d11a393555f28f6c6afc1ab3891ce9a5b03d6425dbf42ef1a53e110c2

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 191.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2820fc78a0ce617407e51d0079b5f261cb8fedbf01b4a9315b069ac2ee71c83e
MD5 7888b58e62f550c301ba4e1cf2f5e6bd
BLAKE2b-256 152b5c2eecf4c9625bf1697fa3b4ecde532127c8cbe20403d117409b6d0899be

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da95fe24300c411a1ed2ac55b06697dff849c9340ba56e437c0705baa8906472
MD5 b2ef908ec6045f760cfdf1c737f211c3
BLAKE2b-256 d858d7afd1d517d1c50cc66dfc34451cb4c5c14c68b5c582b726280c015235e0

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1706b2be85578f8b978bf2ec859f77593257be6bc6264e43587bca461458128
MD5 bbd75e01a7728c2e233807e8a76b1c16
BLAKE2b-256 8c046ca83b4badc1ab9cad09c214c549e0efb353841700d8bb4e65b3f08a202d

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90dce92a758847c26eea077d117c5738e2948e9c7afd2b5c5767693eb94c1032
MD5 bcdd65f96989d124aa12bc388c80f96a
BLAKE2b-256 e13705973661c7fb8e108e4a97e690d1e80a5aa5f2f8801f09f29cc1fed5e870

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c41a11a0e525cf59f286c19b95b8da37e1f7ae68dbedc629a3a91f3c859c5be1
MD5 cd252916c50efaccc6917141ca1910ae
BLAKE2b-256 06052b488f2eee86095abc3d73b03051e6318e2257804ec6becffc975ac8c744

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjnius-1.6.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 216.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 188ad52b3052206a86db3d823052fff50f05d296dae4a78109b99d15ccc37bc7
MD5 aa0af407e926a549e5aabbba3a4742b2
BLAKE2b-256 51572082e479bc6c6d13df930d15923bc1d1bb2c38c73c1488dc9bbedac67a70

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyjnius-1.6.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 188.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyjnius-1.6.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 da1367dcae7b253ce3f41c1bd084906d1ec2abf574cda7d271c011fcfd7b62d7
MD5 6c93422da84376d5747d1e56016dc138
BLAKE2b-256 eb68b50dabd08a7a285364d538ddf59f83c39d706433001ece4831144f3f2d90

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 069bb3272607e64b36f4203faf359678e1f6c898b6a65aab2db21ef462cae66e
MD5 ebbe3f630eca4a7f92934e2570a3d6c7
BLAKE2b-256 3ed46739af756a149ebb68edf483929323ae9507a6ec9c7e28faa4c537f3a8a5

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 154d6675cd6b526308d94ac6f7a288e836a7269477aedf8f93ffbc954d8641be
MD5 fcbea239ebe6d8d422051feda696926c
BLAKE2b-256 0c2645553e843c0ed7b8b66cd12dff6e8ff53eef9a2c48aeb13fcca739514459

See more details on using hashes here.

File details

Details for the file pyjnius-1.6.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyjnius-1.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d5693318c8b0579ef4d17e2e5751a967de0ee3f93a594d8542846ca81e403aa0
MD5 1329015cd86f8e04c0f96af64e40f1c1
BLAKE2b-256 89d9fdc7e50bf3b90c47e6fdb021f37a7e34e226445246b71811a6326940e36c

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