pninexus 3.2.1__cp311-cp311-manylinux_2_35_x86_64.whl → 3.3.0__cp311-cp311-manylinux_2_35_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. pninexus/__init__.py +5 -0
  2. pninexus/filters/__init__.py +7 -0
  3. pninexus/filters/libH5Zblosc.so +0 -0
  4. pninexus/filters/libblosc_filter.so +0 -0
  5. pninexus/filters/libh5LZF.so +0 -0
  6. pninexus/filters/libh5bshuf.so +0 -0
  7. pninexus/filters/libh5bz2.so +0 -0
  8. pninexus/filters/libh5jpeg.so +0 -0
  9. pninexus/filters/libh5lz4.so +0 -0
  10. pninexus/filters/libh5mafisc.so +0 -0
  11. pninexus/filters/libh5zzfp.so +0 -0
  12. pninexus/filters/liblzf_filter.so +0 -0
  13. pninexus/h5cpp/_attribute.cpython-311-x86_64-linux-gnu.so +0 -0
  14. pninexus/h5cpp/_dataspace.cpython-311-x86_64-linux-gnu.so +0 -0
  15. pninexus/h5cpp/_datatype.cpython-311-x86_64-linux-gnu.so +0 -0
  16. pninexus/h5cpp/_file.cpython-311-x86_64-linux-gnu.so +0 -0
  17. pninexus/h5cpp/_filter.cpython-311-x86_64-linux-gnu.so +0 -0
  18. pninexus/h5cpp/_h5cpp.cpython-311-x86_64-linux-gnu.so +0 -0
  19. pninexus/h5cpp/_node.cpython-311-x86_64-linux-gnu.so +0 -0
  20. pninexus/h5cpp/_property.cpython-311-x86_64-linux-gnu.so +0 -0
  21. pninexus/h5cpp/attribute/__init__.py +21 -3
  22. pninexus/h5cpp/node/__init__.py +19 -3
  23. pninexus/nexus/_nexus.cpython-311-x86_64-linux-gnu.so +0 -0
  24. {pninexus-3.2.1.dist-info → pninexus-3.3.0.dist-info}/METADATA +17 -10
  25. pninexus-3.3.0.dist-info/RECORD +82 -0
  26. {pninexus-3.2.1.dist-info → pninexus-3.3.0.dist-info}/WHEEL +1 -1
  27. pninexus.libs/libblosc-9bb1824a.so.1.21.3 +0 -0
  28. pninexus.libs/libbz2-e4f501c8.so.1.0.4 +0 -0
  29. pninexus.libs/{libcrypto-824c2f42.so.3 → libcrypto-93b58397.so.3} +0 -0
  30. pninexus.libs/libcurl-f099a5cc.so.4.8.0 +0 -0
  31. pninexus.libs/libgnutls-d6013ca9.so.30.34.3 +0 -0
  32. pninexus.libs/libgomp-65f4e0ef.so.1.0.0 +0 -0
  33. pninexus.libs/{libgssapi_krb5-5f988476.so.2.2 → libgssapi_krb5-38add604.so.2.2} +0 -0
  34. pninexus.libs/{libh5cpp-b4caed5a.so.0.6.0 → libh5cpp-c7f776c6.so.0.7.1} +0 -0
  35. pninexus.libs/libhdf5_serial-8768aa43.so.103.3.1 +0 -0
  36. pninexus.libs/libjpeg-dad87949.so.62.3.0 +0 -0
  37. pninexus.libs/libldap-2-062bb940.5.so.0.1.8 +0 -0
  38. pninexus.libs/liblz4-0f0ce522.so.1.9.4 +0 -0
  39. pninexus.libs/liblzf-4c834dd7.so.1.5 +0 -0
  40. pninexus.libs/libnghttp2-c01aa267.so.14.24.1 +0 -0
  41. pninexus.libs/libpninexus-3bdb575e.so.3.3.0 +0 -0
  42. pninexus.libs/librtmp-60631c5d.so.1 +0 -0
  43. pninexus.libs/libsnappy-f877f91f.so.1.1.9 +0 -0
  44. pninexus.libs/libssh2-66f751ec.so.1.0.1 +0 -0
  45. pninexus.libs/libssl-0122e231.so.3 +0 -0
  46. pninexus.libs/{libtasn1-ac2f39cf.so.6.6.3 → libtasn1-139e933a.so.6.6.3} +0 -0
  47. pninexus.libs/libzfp-3db3f9ce.so.1.0.0 +0 -0
  48. pninexus-3.2.1.dist-info/RECORD +0 -63
  49. pninexus.libs/libcurl-ae17e134.so.4.8.0 +0 -0
  50. pninexus.libs/libgnutls-6410e990.so.30.34.3 +0 -0
  51. pninexus.libs/libnghttp2-9e5a0877.so.14.24.1 +0 -0
  52. pninexus.libs/libpninexus-23cafc38.so.3.2.0 +0 -0
  53. pninexus.libs/libssl-97000013.so.3 +0 -0
  54. {pninexus-3.2.1.dist-info → pninexus-3.3.0.dist-info}/LICENSE +0 -0
  55. {pninexus-3.2.1.dist-info → pninexus-3.3.0.dist-info}/top_level.txt +0 -0
pninexus/__init__.py CHANGED
@@ -1 +1,6 @@
1
1
  __path__ = __import__('pkgutil').extend_path(__path__, __name__)
2
+
3
+ try:
4
+ from . import filters
5
+ except ImportError:
6
+ pass
@@ -0,0 +1,7 @@
1
+ """
2
+ :py:mod:`pninexus.filters` is a path setter for HDF5_PLUGIN_PATH
3
+ """
4
+ import os
5
+ from pathlib import Path
6
+
7
+ os.environ["HDF5_PLUGIN_PATH"] = os.path.split(Path(__file__))[0]
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,6 @@
1
1
  from __future__ import print_function
2
2
  import numpy
3
+ import sys
3
4
 
4
5
  from pninexus.h5cpp import property
5
6
  from pninexus.h5cpp._attribute import AttributeManager
@@ -8,6 +9,10 @@ from pninexus.h5cpp._attribute import Attribute
8
9
  __all__ = ["property", "AttributeManager", "Attribute"]
9
10
 
10
11
 
12
+ if sys.version_info > (3,):
13
+ unicode = str
14
+
15
+
11
16
  def attribute__getitem__(self, index):
12
17
 
13
18
  data = self.read()
@@ -20,15 +25,28 @@ def attribute_write(self, data):
20
25
  write_data = data
21
26
  if not isinstance(write_data, numpy.ndarray):
22
27
  write_data = numpy.array(write_data)
23
-
24
28
  if write_data.dtype.kind == 'U':
25
- write_data = write_data.astype("S")
29
+ try:
30
+ write_data = write_data.astype("S")
31
+ except Exception:
32
+ if isinstance(data, numpy.ndarray) and data.shape:
33
+ shape = data.shape
34
+ if len(shape) > 1:
35
+ data = data.flatten()
36
+ write_data = numpy.array(
37
+ [bytes(unicode(dt).encode('utf-8')) for dt in data])
38
+ if len(shape) > 1:
39
+ write_data = write_data.reshape(shape)
40
+ else:
41
+ write_data = numpy.array(unicode(data).encode('utf-8'))
26
42
  elif write_data.dtype == 'bool':
27
43
  write_data = write_data.astype("int8")
28
44
 
45
+ # print("DATA", data, write_data)
29
46
  try:
30
47
  self._write(write_data)
31
- except RuntimeError:
48
+ except RuntimeError as e:
49
+ print(str(e))
32
50
  print(write_data, write_data.dtype)
33
51
 
34
52
 
@@ -5,6 +5,7 @@ from pninexus.h5cpp import dataspace
5
5
  from pninexus.h5cpp import datatype
6
6
  from pninexus.h5cpp.filter import ExternalFilters
7
7
  import numpy
8
+ import sys
8
9
  # from collections import OrderedDict
9
10
 
10
11
  #
@@ -45,6 +46,10 @@ except Exception:
45
46
  VDSAvailable = False
46
47
 
47
48
 
49
+ if sys.version_info > (3,):
50
+ unicode = str
51
+
52
+
48
53
  def copy(node, base, path=None, link_creation_list=property.LinkCreationList(),
49
54
  object_copy_list=property.ObjectCopyList()):
50
55
  """Copy an object within the HDF5 tree
@@ -275,8 +280,19 @@ def dataset_write(self, data, selection=None):
275
280
  # if the data is a unicode numpy array we have to convert it to a
276
281
  # simple string array
277
282
  if data.dtype.kind == 'U':
278
- data = data.astype('S')
279
-
283
+ try:
284
+ data = data.astype('S')
285
+ except Exception:
286
+ if isinstance(data, numpy.ndarray) and data.shape:
287
+ shape = data.shape
288
+ if len(shape) > 1:
289
+ data = data.flatten()
290
+ data = numpy.array(
291
+ [bytes(unicode(dt).encode('utf-8')) for dt in data])
292
+ if len(shape) > 1:
293
+ data = data.reshape(shape)
294
+ else:
295
+ data = numpy.array(unicode(data).encode('utf-8'))
280
296
  #
281
297
  # determine memory datatype and dataspace
282
298
  # - if the file type is a variable length string we have to adjust the
@@ -286,7 +302,7 @@ def dataset_write(self, data, selection=None):
286
302
 
287
303
  if isinstance(self.datatype, datatype.String):
288
304
  if self.datatype.is_variable_length:
289
- memory_type = datatype.String.variable()
305
+ memory_type = self.datatype
290
306
 
291
307
  # if the data is bool numpy array we have to convert it to a
292
308
  # int array
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pninexus
3
- Version: 3.2.1
3
+ Version: 3.3.0
4
4
  Summary: Python wrapper for the H5CPP and PNI libraries
5
5
  Home-page: https://github.com/pni-libraries/python-pninexus
6
6
  Author: Eugen Wintersberger
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.8
20
20
  Classifier: Programming Language :: Python :: 3.9
21
21
  Classifier: Programming Language :: Python :: 3.10
22
22
  Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
23
24
  License-File: LICENSE
24
25
  Requires-Dist: numpy
25
26
 
@@ -103,8 +104,8 @@ For Python3 just replace python with python3 in the above instructions.
103
104
  Debian and Ubuntu packages
104
105
  ~~~~~~~~~~~~~~~~~~~~~~~~~~
105
106
 
106
- Debian ``bookworm``, ``bullseye``, ``buster`` or Ubuntu ``lunar``,
107
- ``jammy``, ``focal`` packages can be found in the HDRI repository.
107
+ Debian ``bookworm``, ``bullseye``, ``buster`` or Ubuntu ``oracular``,
108
+ ``noble``, ``jammy`` packages can be found in the HDRI repository.
108
109
 
109
110
  To install the debian packages, add the PGP repository key
110
111
 
@@ -114,19 +115,19 @@ To install the debian packages, add the PGP repository key
114
115
  $ curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import
115
116
  $ chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg
116
117
 
117
- and then download the corresponding source list, e.g. for ``bullseye``
118
+ and then download the corresponding source list, e.g. for ``bookworm``
118
119
 
119
120
  ::
120
121
 
121
122
  $ cd /etc/apt/sources.list.d
122
- $ wget http://repos.pni-hdri.de/bullseye-pni-hdri.list
123
+ $ wget http://repos.pni-hdri.de/bookworm-pni-hdri.list
123
124
 
124
- or ``jammy``
125
+ or ``noble``
125
126
 
126
127
  ::
127
128
 
128
129
  $ cd /etc/apt/sources.list.d
129
- $ wget http://repos.pni-hdri.de/jammy-pni-hdri.list
130
+ $ wget http://repos.pni-hdri.de/noble-pni-hdri.list
130
131
 
131
132
  respectively.
132
133
 
@@ -135,16 +136,16 @@ Finally,
135
136
  ::
136
137
 
137
138
  $ apt-get update
138
- $ apt-get install python-pninexus
139
+ $ apt-get install python3-pninexus
139
140
 
140
141
  or
141
142
 
142
143
  ::
143
144
 
144
145
  $ apt-get update
145
- $ apt-get install python3-pninexus
146
+ $ apt-get install python-pninexus
146
147
 
147
- for python3.
148
+ for python2.
148
149
 
149
150
 
150
151
  Manylinux wheels from PyPI
@@ -164,6 +165,12 @@ To install pninexus in a conda or python virtual environment manylinux pip wheel
164
165
 
165
166
  For some versions of wheels numpy needs to be installed in advance.
166
167
 
168
+ Starting from v3.2.2 the pninexus wheel contains the most important external filters.
169
+ In order to use them one needs to set HDF5_PLUGIN_PATH e.g. by
170
+
171
+ .. code-block:: python
172
+
173
+ import pninexus
167
174
 
168
175
 
169
176
  More information can be found at `online
@@ -0,0 +1,82 @@
1
+ pninexus/__init__.py,sha256=VGnNxm2gixVy1tn3CamhzVPmQwVHd_nG4B3uJ_cOaMo,126
2
+ pninexus/filters/__init__.py,sha256=a_UTMrhbkD1DpGnLkzON92UVCfQWNQTSvJ09Rtqzzqw,175
3
+ pninexus/filters/libH5Zblosc.so,sha256=6OdAjy7OIjKE6k8fjLs4zbpRC-znyHhcajzV_m8Ds2c,21801
4
+ pninexus/filters/libblosc_filter.so,sha256=bFskCR4hyDj7kabfmDSVkRBwNj36QYlK3PKABeKAzk0,21753
5
+ pninexus/filters/libh5LZF.so,sha256=KFuTsQX7EOOktGUYkAnI_lV1JcGY-gudIDGgveffHwA,21569
6
+ pninexus/filters/libh5bshuf.so,sha256=x93uqO8V8vFxcDNucHNIemhgf0NfPObcWhGU7QGvu1w,39457
7
+ pninexus/filters/libh5bz2.so,sha256=ASpUOAVkHq8zbD9OWrYQpjonm-9V4dljGaeFbvuDS_4,21393
8
+ pninexus/filters/libh5jpeg.so,sha256=aBPBQfGnr7n2HqUfZFHi-Kc0YWKkpWNepNOLantbbdE,21849
9
+ pninexus/filters/libh5lz4.so,sha256=FO0Ly4_zFZPhk0nBA_EmUrrh-VKtFR9VQKd2PVZt2HM,21617
10
+ pninexus/filters/libh5mafisc.so,sha256=MpdmFJr6Bg23fAsrNfrLULj0yQ-9r7QScv1GjNj2E-c,236385
11
+ pninexus/filters/libh5zzfp.so,sha256=hqeIoslFoOnJ0euhyyY48qNosgR-5pczKgB9XQhDxoE,30545
12
+ pninexus/filters/liblzf_filter.so,sha256=fKP_KKhTT_HRoxdVzKdgLsfp9iHdcrq4tnuz-ZbInbQ,14416
13
+ pninexus/h5cpp/__init__.py,sha256=kL1E5me6zbHAMazYDHGdBaGznqnaYlMrizgHhQnl298,1010
14
+ pninexus/h5cpp/_attribute.cpython-311-x86_64-linux-gnu.so,sha256=cprDWEOG8SuVnwwkcHawJCucGnMDZ4oLS8j7TeZChZQ,2914473
15
+ pninexus/h5cpp/_dataspace.cpython-311-x86_64-linux-gnu.so,sha256=DXK5Cr0yDZB17JtQd5ABH7MWcCvvPp2zhS5OFz_rCmk,3190465
16
+ pninexus/h5cpp/_datatype.cpython-311-x86_64-linux-gnu.so,sha256=_RQWDc05BMySxFXJaQX_xNycZAK61sZNTl57to6sd2g,3315649
17
+ pninexus/h5cpp/_file.cpython-311-x86_64-linux-gnu.so,sha256=HyneW03Yz6XrWoKRv9H2BmzpteTHeRHx1youWGbT2EA,2425281
18
+ pninexus/h5cpp/_filter.cpython-311-x86_64-linux-gnu.so,sha256=FAUcXB9Vp_JmlWUGELBXVTmFG2vp6YHd-A6Dh-5cUvw,2399289
19
+ pninexus/h5cpp/_h5cpp.cpython-311-x86_64-linux-gnu.so,sha256=Dokf9nvphGitZz0tK2wkCDVkRPWDfQUWmNZcjf7P1qc,2366145
20
+ pninexus/h5cpp/_node.cpython-311-x86_64-linux-gnu.so,sha256=dd92Uhz2lYd3ULYMspR_bYolFAm68FhVQUvlsABobqY,7669161
21
+ pninexus/h5cpp/_property.cpython-311-x86_64-linux-gnu.so,sha256=jJx_9xNiOpBdoUbrWixhmAjBdBa1h5oHh3wQw8T3oCI,6999297
22
+ pninexus/h5cpp/attribute/__init__.py,sha256=FFzFpA-nMwUOcOJFXrVz2i7NWmG192r1N9UVoeudkdc,1729
23
+ pninexus/h5cpp/dataspace/__init__.py,sha256=fFYOpmSvE1jqOE2cNL8X7npPmtIykDYOMgJc3jm8VpE,756
24
+ pninexus/h5cpp/datatype/__init__.py,sha256=1Uasm4jp871gORJwQ2sjvvt_EJ_zTmE58DRYlKIUl2g,5471
25
+ pninexus/h5cpp/file/__init__.py,sha256=BjZcRliMYQZb-VYc6k-OWm29XXanMsZjzR1iMbQIVds,478
26
+ pninexus/h5cpp/filter/__init__.py,sha256=oHiUNyLk5tCMcieoxXxCLoMd788wx8Flzu407poVVnI,1500
27
+ pninexus/h5cpp/node/__init__.py,sha256=zy90mD2GVcbsc4hsbOjApVPOJFkWs0Ef32UjHNwRboo,15187
28
+ pninexus/h5cpp/property/__init__.py,sha256=h84toTAZvm9ac6_bX7IsXLN4ZymPHIweCmUcweL14wM,2729
29
+ pninexus/nexus/__init__.py,sha256=M7YMP1avSRLSZXeSqO5fWoBmf_oScF2pVshFqo2zKNk,6035
30
+ pninexus/nexus/_nexus.cpython-311-x86_64-linux-gnu.so,sha256=s_pz3M8QO1_d0eC8jt0Jr7XC4aM5RVjuMQJZ3HcPgeY,6218529
31
+ pninexus.libs/libaec-44c4e4c2.so.0.0.12,sha256=_N26DzyovQJTIIZQybb2HjSpSkwjqquLx3lO5JRxE0s,33553
32
+ pninexus.libs/libblosc-9bb1824a.so.1.21.3,sha256=6q6gRxh3HYqo04SLPoM9quLQBs8YuCc-mJiE7Iaa8KY,71121
33
+ pninexus.libs/libboost_python311-8df913cd.so.1.74.0,sha256=LC7kD-1B5QExF0N8SrDIQpHuSNT_S1HcguDn7LGfy3Q,279409
34
+ pninexus.libs/libboost_regex-1e838ab7.so.1.74.0,sha256=2mc3un2k18MDe09oNQhql10EQg2mymeA06s1aRNexX8,1153169
35
+ pninexus.libs/libbrotlicommon-d0dd623a.so.1.0.9,sha256=FOacTD-ud7ZVUGU-NFTaxYz3MkGOD4f72_d1Xgahf_4,140105
36
+ pninexus.libs/libbrotlidec-928b2613.so.1.0.9,sha256=i_DERGPe_fWvmR5ZouthY0dA0w5PoqUtTN3miqsSUEI,54785
37
+ pninexus.libs/libbz2-e4f501c8.so.1.0.4,sha256=IJjNcvkxtiIHDMpe7CxX81HFeD_pAKeQKx3Kk0viIO8,79041
38
+ pninexus.libs/libcom_err-2af7b6ae.so.2.1,sha256=8pYWrTuSS1oLjSCdF_RAj2Pdpi7xwvhhxE60qEoiF0E,21473
39
+ pninexus.libs/libcrypto-93b58397.so.3,sha256=YBp7_Jh3MXOtPqNCHmE1qUMjM2FHdj6VbFjiT_b2te0,4885657
40
+ pninexus.libs/libcurl-f099a5cc.so.4.8.0,sha256=028778DAy1TuW6XSLcGBPKgcpPOFN17OVm_YDmXp9Ro,735841
41
+ pninexus.libs/libffi-983e72b7.so.8.1.2,sha256=V3Uk2b5uduvgaLvkBIvor6TRSs5uNJqUUELdFcs3ui0,46721
42
+ pninexus.libs/libgmp-7376c9af.so.10.4.1,sha256=w-AfX5VrPfutNjE3kQJdvuiabFd7Oy43GiZr8RXPBQc,548569
43
+ pninexus.libs/libgnutls-d6013ca9.so.30.34.3,sha256=IWgjbeqZoiAexA42I2TE2xJj-kuL5MP4K7u5dqn5lXk,2311161
44
+ pninexus.libs/libgomp-65f4e0ef.so.1.0.0,sha256=TKcNQKe5mh5EZqVB5VyJbsQOe94ap_1C0oYGMW9cHUc,308577
45
+ pninexus.libs/libgssapi_krb5-38add604.so.2.2,sha256=EuellGu-techv6zIOjL9qXX5Ljd44dYb8lttuCXZQ3Q,362177
46
+ pninexus.libs/libh5cpp-c7f776c6.so.0.7.1,sha256=gW5u6afvUTdIyiPZYz-HvBpVw1TU27GLmp2VAOZcUIY,775505
47
+ pninexus.libs/libhdf5_serial-8768aa43.so.103.3.1,sha256=gbnFpdWm2lP1QSJ7_sC1yjM5LoiADPMmhXqdk8syKvA,4010673
48
+ pninexus.libs/libhdf5_serial_hl-b926ac43.so.100.1.5,sha256=rKMKgJXGqNFBi-TOMz-IHU3ZCqBSWyTlayMwbqQlKPI,153769
49
+ pninexus.libs/libhogweed-480675ed.so.6.6,sha256=S-8-Jxq2-mQe9oj0_Unn2lzUfer4NjVpYgXHwBxpFw0,316513
50
+ pninexus.libs/libicudata-b9574df8.so.72.1,sha256=Q4IMDKHAvpuinlQW6ktFzdytcHs5coKVR3CvyWbG54s,31265137
51
+ pninexus.libs/libicui18n-f5aeecb9.so.72.1,sha256=oL7jm-R9jifIIxVtKurj2AjL652w435wVMqslsMopDQ,4393577
52
+ pninexus.libs/libicuuc-1b87b330.so.72.1,sha256=xfcc7o67SukGsPUIwylHqZ8I3tHOfoify8cAsKasTFI,2426953
53
+ pninexus.libs/libidn2-864f32ec.so.0.3.8,sha256=DVKOks5ij4tiyDRmx6nXcECZhE01y9MmXfEglOakDMU,206089
54
+ pninexus.libs/libjpeg-dad87949.so.62.3.0,sha256=58RRHKgntvs1HpBThJS0XPLpM0kc8dA7w8NIy6o7Rt4,605985
55
+ pninexus.libs/libk5crypto-e4cbad8b.so.3.1,sha256=3IKHS9fv6cTepFPkzgShQVsOuQxnF5vro1JvrZOL33o,191089
56
+ pninexus.libs/libkeyutils-3b2f8f3f.so.1.10,sha256=jK_PyracDE04EnBNg4nUyKseG__GboCm837fjwH7ErA,26417
57
+ pninexus.libs/libkrb5-42dd0c49.so.3.3,sha256=Om-Z-zIKkl9UrMKBLgOawYOFA2NOmMmIytAY6m6DgQQ,932625
58
+ pninexus.libs/libkrb5support-aa3ef888.so.0.1,sha256=p_mVBPcp2-KRKF43tbjDSQBGiUjO4zMThQ3k84PETsY,56961
59
+ pninexus.libs/liblber-2-64f183c1.5.so.0.1.8,sha256=ZimRd-lx_b22v18-suw2Owc0xbZ8TB4VgmWqOtSWQDk,69233
60
+ pninexus.libs/libldap-2-062bb940.5.so.0.1.8,sha256=fm1pfH99qq5t73FHqgu_B5RRp0BNPCQg-oS7Ycc1Q70,422097
61
+ pninexus.libs/liblz4-0f0ce522.so.1.9.4,sha256=o3Avr76ISh9B8JjAFzTDHndmKbItOvCQnkataNCSShE,155241
62
+ pninexus.libs/liblzf-4c834dd7.so.1.5,sha256=XOmccQjDX_BOHnNwC-q4havtSTaWXa05TYnnN0Z_cAM,20993
63
+ pninexus.libs/libnettle-63f8ec7a.so.8.6,sha256=ndjCYCVhp94_llkzz07ggJEoIQ2JNCVsPt5DVlFC4S0,337617
64
+ pninexus.libs/libnghttp2-c01aa267.so.14.24.1,sha256=IVMIWJaOwh3Dw2I-FBvb3xINJITOEZj7LkMzY70ygvU,199921
65
+ pninexus.libs/libp11-kit-a0a560ae.so.0.3.0,sha256=POW2BmqfpUU_3zi6tCGCb8VtuBFty3IQ_jdYL4WcdI8,1273673
66
+ pninexus.libs/libpninexus-3bdb575e.so.3.3.0,sha256=Xr7qybO_d4b1zoo_tc51fn6V7932gWXbK6Dol59YMfA,2011145
67
+ pninexus.libs/libpsl-20f0bf67.so.5.3.4,sha256=wp5JHc6DBFeefioaKTb76K6dSUss14Sd1o6qpHcK3KE,82889
68
+ pninexus.libs/librtmp-60631c5d.so.1,sha256=Xd2JurHUNCeULxcUZRk7_9qNtx6oyS5QF2er1vysFVk,134745
69
+ pninexus.libs/libsasl2-0e214d8c.so.2.0.25,sha256=QFoxryRxt7grQxHdIE6PlUOZs1vuimcnP-UnvpbHdgE,117313
70
+ pninexus.libs/libsnappy-f877f91f.so.1.1.9,sha256=QcHv-4JX7tJnsOgwd5wv-46XyGHvmeKLYVTvvdkQh-o,49801
71
+ pninexus.libs/libssh2-66f751ec.so.1.0.1,sha256=hpeUiJvsg6YrbGVLD33QiAwrY4qXEZf1hTwe3CcLeew,276057
72
+ pninexus.libs/libssl-0122e231.so.3,sha256=WlaaF-gO1jQaQ1Jy_8XP2d2pavK1OJ9yOxcxg4bP6qg,742441
73
+ pninexus.libs/libsz-9525fec6.so.2.0.1,sha256=i8T5_oAS63khhKqdrFUioqFqd9xlb1jCGNx8_dHel7g,20841
74
+ pninexus.libs/libtasn1-139e933a.so.6.6.3,sha256=8hVjKB50Ffjt7I14S-OG6VazgkmjWa2dYdzHWBv727o,87729
75
+ pninexus.libs/libunistring-bc5951aa.so.2.2.0,sha256=a9LTyDQJJCvkOgrOzmeu73KsRFKoVEBlgFfa0aiAlrI,1814801
76
+ pninexus.libs/libzfp-3db3f9ce.so.1.0.0,sha256=FMSj4r9XI-pHgop6q7aEI38XfP5wOWETqECnh4WUDbg,214313
77
+ pninexus.libs/libzstd-37412b7a.so.1.5.4,sha256=LeY2v7BgG25Qmum7YHKJV-JzbnGTUMNHpZhUmHTE9LQ,772297
78
+ pninexus-3.3.0.dist-info/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
79
+ pninexus-3.3.0.dist-info/METADATA,sha256=TR3JChjpKUDFDDpDNoOnQfZEgOx8lhPNv_lLC2sfhy0,4875
80
+ pninexus-3.3.0.dist-info/WHEEL,sha256=zb-_MbUQF5Uhp97gyihLzYt7Rst3WpmI1KiWQRVVAdc,114
81
+ pninexus-3.3.0.dist-info/top_level.txt,sha256=02ZiLP_54gh4H6BS7DYE4eWvJRPhsCiFNUNgznIbPV8,9
82
+ pninexus-3.3.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.45.1)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-manylinux_2_35_x86_64
5
5
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,63 +0,0 @@
1
- pninexus.libs/libtasn1-ac2f39cf.so.6.6.3,sha256=XmYsIDdOgquraoiMAT5KGBgsuR_s73xlJt_LuuzNdQY,87729
2
- pninexus.libs/libcom_err-2af7b6ae.so.2.1,sha256=8pYWrTuSS1oLjSCdF_RAj2Pdpi7xwvhhxE60qEoiF0E,21473
3
- pninexus.libs/libgnutls-6410e990.so.30.34.3,sha256=RLPwlRcSvJg_4hzVGNHj11_q5OTU63dJpZM2VRSLews,2311177
4
- pninexus.libs/libsasl2-0e214d8c.so.2.0.25,sha256=QFoxryRxt7grQxHdIE6PlUOZs1vuimcnP-UnvpbHdgE,117313
5
- pninexus.libs/libkrb5support-aa3ef888.so.0.1,sha256=p_mVBPcp2-KRKF43tbjDSQBGiUjO4zMThQ3k84PETsY,56961
6
- pninexus.libs/libboost_python311-8df913cd.so.1.74.0,sha256=LC7kD-1B5QExF0N8SrDIQpHuSNT_S1HcguDn7LGfy3Q,279409
7
- pninexus.libs/libbrotlidec-928b2613.so.1.0.9,sha256=i_DERGPe_fWvmR5ZouthY0dA0w5PoqUtTN3miqsSUEI,54785
8
- pninexus.libs/libpninexus-23cafc38.so.3.2.0,sha256=lzF67530KIh6HQtrT7iar12K-UnRj4LVqMPyJTErIaY,2010153
9
- pninexus.libs/libgmp-7376c9af.so.10.4.1,sha256=w-AfX5VrPfutNjE3kQJdvuiabFd7Oy43GiZr8RXPBQc,548569
10
- pninexus.libs/libicudata-b9574df8.so.72.1,sha256=Q4IMDKHAvpuinlQW6ktFzdytcHs5coKVR3CvyWbG54s,31265137
11
- pninexus.libs/libbrotlicommon-d0dd623a.so.1.0.9,sha256=FOacTD-ud7ZVUGU-NFTaxYz3MkGOD4f72_d1Xgahf_4,140105
12
- pninexus.libs/libkeyutils-3b2f8f3f.so.1.10,sha256=jK_PyracDE04EnBNg4nUyKseG__GboCm837fjwH7ErA,26417
13
- pninexus.libs/libidn2-864f32ec.so.0.3.8,sha256=DVKOks5ij4tiyDRmx6nXcECZhE01y9MmXfEglOakDMU,206089
14
- pninexus.libs/librtmp-60631c5d.so.1,sha256=Pb73HHrAxttWfgVSGThc4pRvP7EJnQ3xW4pjRMV9fMY,134745
15
- pninexus.libs/libicuuc-1b87b330.so.72.1,sha256=xfcc7o67SukGsPUIwylHqZ8I3tHOfoify8cAsKasTFI,2426953
16
- pninexus.libs/libh5cpp-b4caed5a.so.0.6.0,sha256=nrOyXXkpoy0KlWOnlH3M-ErzAxqYylS41nfbvHb7DkU,775505
17
- pninexus.libs/libicui18n-f5aeecb9.so.72.1,sha256=oL7jm-R9jifIIxVtKurj2AjL652w435wVMqslsMopDQ,4393577
18
- pninexus.libs/libgssapi_krb5-5f988476.so.2.2,sha256=W_awxJieb4iv_p-DB8EDnoF-4LMeZPMsTf2k9fxneOc,358081
19
- pninexus.libs/liblber-2-64f183c1.5.so.0.1.8,sha256=ZimRd-lx_b22v18-suw2Owc0xbZ8TB4VgmWqOtSWQDk,69233
20
- pninexus.libs/libldap-2-062bb940.5.so.0.1.8,sha256=VCQPkiC2WHE21vgmRxeJ-N-zvKjc_pYwTjcDdP6tHQM,422097
21
- pninexus.libs/libaec-44c4e4c2.so.0.0.12,sha256=_N26DzyovQJTIIZQybb2HjSpSkwjqquLx3lO5JRxE0s,33553
22
- pninexus.libs/libunistring-bc5951aa.so.2.2.0,sha256=a9LTyDQJJCvkOgrOzmeu73KsRFKoVEBlgFfa0aiAlrI,1814801
23
- pninexus.libs/libzstd-37412b7a.so.1.5.4,sha256=LeY2v7BgG25Qmum7YHKJV-JzbnGTUMNHpZhUmHTE9LQ,772297
24
- pninexus.libs/libssl-97000013.so.3,sha256=HpWR2fQqF6EtPOMLUq9dPMh_8o6Yc1oBtLq8XMTJCyA,750625
25
- pninexus.libs/libcrypto-824c2f42.so.3,sha256=kttwu2n5nSAxSsaTwhhmmCcAWld7ENYT49-CSEX53Ic,4869273
26
- pninexus.libs/libp11-kit-a0a560ae.so.0.3.0,sha256=POW2BmqfpUU_3zi6tCGCb8VtuBFty3IQ_jdYL4WcdI8,1273673
27
- pninexus.libs/libhdf5_serial-8768aa43.so.103.3.1,sha256=8jj0qsi28dgB-MvFlLDkG8Zc42ktgTCAztzU06cVATs,4010673
28
- pninexus.libs/libcurl-ae17e134.so.4.8.0,sha256=hsfp660zlB5h5gtzwzGJThsoCHzgy4M297redrAEDM4,739937
29
- pninexus.libs/libssh2-66f751ec.so.1.0.1,sha256=0pN1_5vdWqieUVsmYQ_xTZHmWT56XL-quEMDkSFbXr4,276057
30
- pninexus.libs/libnghttp2-9e5a0877.so.14.24.1,sha256=bmJvD8Ey-bzOUu-I1H9yQ-rrel3LhqJanF_posW80jY,195713
31
- pninexus.libs/libnettle-63f8ec7a.so.8.6,sha256=ndjCYCVhp94_llkzz07ggJEoIQ2JNCVsPt5DVlFC4S0,337617
32
- pninexus.libs/libboost_regex-1e838ab7.so.1.74.0,sha256=2mc3un2k18MDe09oNQhql10EQg2mymeA06s1aRNexX8,1153169
33
- pninexus.libs/libpsl-20f0bf67.so.5.3.4,sha256=wp5JHc6DBFeefioaKTb76K6dSUss14Sd1o6qpHcK3KE,82889
34
- pninexus.libs/libk5crypto-e4cbad8b.so.3.1,sha256=3IKHS9fv6cTepFPkzgShQVsOuQxnF5vro1JvrZOL33o,191089
35
- pninexus.libs/libhogweed-480675ed.so.6.6,sha256=S-8-Jxq2-mQe9oj0_Unn2lzUfer4NjVpYgXHwBxpFw0,316513
36
- pninexus.libs/libhdf5_serial_hl-b926ac43.so.100.1.5,sha256=rKMKgJXGqNFBi-TOMz-IHU3ZCqBSWyTlayMwbqQlKPI,153769
37
- pninexus.libs/libffi-983e72b7.so.8.1.2,sha256=V3Uk2b5uduvgaLvkBIvor6TRSs5uNJqUUELdFcs3ui0,46721
38
- pninexus.libs/libkrb5-42dd0c49.so.3.3,sha256=Om-Z-zIKkl9UrMKBLgOawYOFA2NOmMmIytAY6m6DgQQ,932625
39
- pninexus.libs/libsz-9525fec6.so.2.0.1,sha256=i8T5_oAS63khhKqdrFUioqFqd9xlb1jCGNx8_dHel7g,20841
40
- pninexus/__init__.py,sha256=jv2YF__bseklT3OWEzlqJ5qE24c4aWd5F4r0TTjOrWQ,65
41
- pninexus/h5cpp/_h5cpp.cpython-311-x86_64-linux-gnu.so,sha256=N35tekKecHMsGy5TpxgipDWmKA-sRNp67en2vB3IHq8,2366121
42
- pninexus/h5cpp/_datatype.cpython-311-x86_64-linux-gnu.so,sha256=Mb71LVT10KXWJqJn7hSCha4tYp8aMvDp9vrGXsUai-Q,3315649
43
- pninexus/h5cpp/_property.cpython-311-x86_64-linux-gnu.so,sha256=QgzH7g-zDlK2YCbulnVTh-hbfsHE7myBIv-EOdkVQ1c,6999297
44
- pninexus/h5cpp/_attribute.cpython-311-x86_64-linux-gnu.so,sha256=1bh9kUKGVqrOZjuvK41eoFD5ogtjs7OW2K1VSbmoakA,2914481
45
- pninexus/h5cpp/__init__.py,sha256=kL1E5me6zbHAMazYDHGdBaGznqnaYlMrizgHhQnl298,1010
46
- pninexus/h5cpp/_file.cpython-311-x86_64-linux-gnu.so,sha256=gPQEHuZ9Q3buDFt4h6Sh5v_Q8NZFGIZoEtF6Qz_KVy4,2425257
47
- pninexus/h5cpp/_dataspace.cpython-311-x86_64-linux-gnu.so,sha256=_YPz6wgyPSk7tWqkjS1CqgiV2mWwHRtgbA9oQ4KDu4k,3190465
48
- pninexus/h5cpp/_filter.cpython-311-x86_64-linux-gnu.so,sha256=MuU8tmpeBbas0r2O3-rb9kOiJTZl82LW3c8ElgYrCdo,2399289
49
- pninexus/h5cpp/_node.cpython-311-x86_64-linux-gnu.so,sha256=m0Pf3-3kjk04S3BLpSEalJNIjF2Cc9grcQD5FOWIiI0,7665041
50
- pninexus/h5cpp/node/__init__.py,sha256=1-CY3AowIkqRHDQGjRBX29EXSx5HYWgIzNxXEWW4Aoc,14649
51
- pninexus/h5cpp/attribute/__init__.py,sha256=KO8BTlp_wJHpDntHjY-jgkF0WJZA9Fp1uG__OOnJP3Q,1088
52
- pninexus/h5cpp/file/__init__.py,sha256=BjZcRliMYQZb-VYc6k-OWm29XXanMsZjzR1iMbQIVds,478
53
- pninexus/h5cpp/filter/__init__.py,sha256=oHiUNyLk5tCMcieoxXxCLoMd788wx8Flzu407poVVnI,1500
54
- pninexus/h5cpp/dataspace/__init__.py,sha256=fFYOpmSvE1jqOE2cNL8X7npPmtIykDYOMgJc3jm8VpE,756
55
- pninexus/h5cpp/property/__init__.py,sha256=h84toTAZvm9ac6_bX7IsXLN4ZymPHIweCmUcweL14wM,2729
56
- pninexus/h5cpp/datatype/__init__.py,sha256=1Uasm4jp871gORJwQ2sjvvt_EJ_zTmE58DRYlKIUl2g,5471
57
- pninexus/nexus/_nexus.cpython-311-x86_64-linux-gnu.so,sha256=TbGvB5s9E762BaVtJsaxrHxcwom2oqb6D7JtzSFxoY8,6218529
58
- pninexus/nexus/__init__.py,sha256=M7YMP1avSRLSZXeSqO5fWoBmf_oScF2pVshFqo2zKNk,6035
59
- pninexus-3.2.1.dist-info/WHEEL,sha256=cp_b1pFFCFXx5NDvSPm6xC8nIkbv7RInBqq9tS1WlCU,114
60
- pninexus-3.2.1.dist-info/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
61
- pninexus-3.2.1.dist-info/RECORD,,
62
- pninexus-3.2.1.dist-info/METADATA,sha256=CHtBxOmSCW_e3n4tIiWkedxOEUBDqCG8OdyR2HqWfM0,4628
63
- pninexus-3.2.1.dist-info/top_level.txt,sha256=02ZiLP_54gh4H6BS7DYE4eWvJRPhsCiFNUNgznIbPV8,9
Binary file
Binary file
Binary file
Binary file