Result for F1755D4DD02C7A65A84123240C4C7722A8ABFE2A

Query result

Key Value
FileNameWHEEL
FileSize105
MD5C13F6BC7B941A2AB944849C72693283A
RDS:package_id302124
SHA-1F1755D4DD02C7A65A84123240C4C7722A8ABFE2A
SHA-256C02A475393EB2C635DA68F996823AD13AB5ED327002B6A18BC999324250A9D44
SSDEEP3:RtEeX7MWcSlViJR4KgP+tkKcfAkdtn:RtBMwlVifAWK5AUt
TLSHT14AB0121102A047FB864B754280288E253B95D55BC5654428F985A120650F85816CDCF9
insert-timestamp1712776905.8277445
sourcedb.sqlite
hashlookup:parent-total9
hashlookup:trust95

Network graph view

Parents (Total: 9)

The searched file hash is included in 9 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
FileSize48984
MD5139F04478F50D31A135AE22488812385
PackageDescriptionImplements Concise Binary Object Representation (Python 3) This library provides encoding and decoding for the Concise Binary Object Representation (CBOR, RFC 7049) serialization format. . Features: * Simple API like json or pickle modules. * Support many CBOR tags with stdlib objects. * Generic tag decoding. * Shared value references including cyclic references. * Optional C module backend tested on big- and little-endian architectures. * Extensible tagged value handling using tag_hook and object_hook on decode and default on encode. * Command-line diagnostic tool, converting CBOR file or stream to JSON (This is a lossy conversion, for diagnostics only) * Thorough test suite. . This package installs the library for Python 3.
PackageMaintainerDebian Python Team <team+python@tracker.debian.org>
PackageNamepython3-cbor2
PackageSectionpython
PackageVersion5.4.6-1+b1
SHA-16ACCF905F7EA59E26BCBB71512F45FDFCF7BD7ED
SHA-256C2A811706EAA3D22739DF070BBA9D42B8E4B5B4D1B99722CF89CE331B2935A2F
Key Value
FileSize144244
MD5AD4D5427356EFEA91C62A1CB6F07B5AD
PackageDescriptionFinite Element Basis Function Definition Runtime Library (Python 3) Computes FE basis functions and derivatives for the following elements: - Lagrange (interval, triangle, tetrahedron, prism, pyramid, quadrilateral, hexahedron) - Nédélec (triangle, tetrahedron) - Nédélec Second Kind (triangle, tetrahedron) - Raviart-Thomas (triangle, tetrahedron) - Regge (triangle, tetrahedron) - Crouzeix-Raviart (triangle, tetrahedron) . Computes quadrature rules on different cell types . Provides reference topology and geometry for reference cells of each type. . Python wrapper provided with pybind11. . This package installs the library for Python 3.
PackageMaintainerDebian Science Team <debian-science-maintainers@lists.alioth.debian.org>
PackageNamepython3-basix
PackageSectionpython
PackageVersion0.5.1-1+b2
SHA-1C9EABB10ED77573583A0BE03A60900E24926ACAB
SHA-256B1B68A9B73335FF6C24106BF62335502E40EB0E11C16F7AD10859939A8638E69
Key Value
FileSize532504
MD58A7F3808198D969203E424544E55BB06
PackageDescriptionPython bindings for the CryptoMiniSat SAT solver (Python 3) CryptoMiniSat is a modern, multi-threaded, simplifying SAT solver. . This package provides the pycryptosat module to use CryptoMiniSat from Python 3. See https://github.com/msoos/cryptominisat#python-usage for examples.
PackageMaintainerDebian Science Team <debian-science-maintainers@lists.alioth.debian.org>
PackageNamepython3-cryptominisat
PackageSectionpython
PackageVersion5.11.4+dfsg1-2+b1
SHA-13E624FBA24D997024590F87E7EA2D8BDE1139C1E
SHA-25641A4E6BA837AE43384E7818A3D388A34C493030E5F9529BA0E41AE397D6A4AFF
Key Value
FileSize511076
MD523940996736D8A391FC64BE43714AB7D
PackageDescriptionPython 3 API for reading/writing vector geospatial data Fiona is a Python wrapper around the OGR vector data abstraction library. Fiona is designed to be simple and dependable. It focuses on reading and writing data in standard Python IO style and relies upon familiar Python types and protocols such as files, dictionaries, mappings, and iterators instead of classes specific to OGR. Fiona can read and write real-world data using multi-layered GIS formats and zipped virtual file systems and integrates readily with other Python GIS packages such as pyproj, Rtree, and Shapely. . This package provides the Python 3 API
PackageMaintainerDebian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
PackageNamepython3-fiona
PackageSectionpython
PackageVersion1.9.0-1
SHA-1EA406C6695484FE7E77BDBDBE8A89C5178CAA8B6
SHA-2562597EB569F17A0AE14C1DEC8793B61197D3276526D026C175A9481FFD6227C8F
Key Value
FileSize155432
MD5EE008B8C50D907E453723549D061FBFC
PackageDescriptionMulti-point constraints with FEniCS-X This library contains an add-on to FEniCSx enabling the possibilities of enforce multi-point constraints. This can be used to for instance enforce slip conditions strongly, or apply periodic boundaries..
PackageMaintainerDrew Parsons <dparsons@debian.org>
PackageNamepython3-dolfinx-mpc
PackageSectionlibs
PackageVersion0.5.0.post0-2+b1
SHA-1963A0CEABD3A0129F725CB02E8D67CC5F9A4E0D6
SHA-25694D048FF5B9BA54523AA7FE0FD43715D954FC0762E8D37EB28F7AC707E836BA8
Key Value
FileNamepython3-frozenlist_1.3.3-1+b1_amd64.deb
FileSize30028
MD5D3CBEB4481C2A61988244B34019221AB
PackageDescriptionlist-like structure which implements collections.abc.MutableSequence `frozenlist.FrozenList` is a list-like structure which implements `collections.abc.MutableSequence`. The list is mutable until `FrozenList.freeze` is called, after which list modifications raise `RuntimeError`: . >>> from frozenlist import FrozenList >>> fl = FrozenList([17, 42]) >>> fl.append('spam') >>> fl.append('Vikings') >>> fl <FrozenList(frozen=False, [17, 42, 'spam', 'Vikings'])> >>> fl.freeze() >>> fl <FrozenList(frozen=True, [17, 42, 'spam', 'Vikings'])> >>> fl.frozen True >>> fl.append("Monty") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "frozenlist/_frozenlist.pyx", line 97, in frozenlist._frozenlist.FrozenList.append self._check_frozen() File "frozenlist/_frozenlist.pyx", line 19, in frozenlist._frozenlist.FrozenList._check_frozen raise RuntimeError("Cannot modify frozen list.") RuntimeError: Cannot modify frozen list. . FrozenList is also hashable, but only when frozen. Otherwise it also throws a RuntimeError: . >>> fl = FrozenList([17, 42, 'spam']) >>> hash(fl) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "frozenlist/_frozenlist.pyx", line 111, in frozenlist._frozenlist.FrozenList.__hash__ raise RuntimeError("Cannot hash unfrozen list.") RuntimeError: Cannot hash unfrozen list. >>> fl.freeze() >>> hash(fl) 3713081631934410656 >>> dictionary = {fl: 'Vikings'} # frozen fl can be a dict key >>> dictionary {<FrozenList(frozen=True, [1, 2])>: 'Vikings'}
PackageMaintainerDebian Python Team <team+python@tracker.debian.org>
PackageNamepython3-frozenlist
PackageSectionpython
PackageVersion1.3.3-1+b1
RDS:package_id294706
SHA-14739B836105F97280076BACC38EE0251E59AB08C
SHA-25639EF587C1B82AA4B7AD5293934E662033F2C8C1CB91B1201ACB31B4BBC314EEE
insert-timestamp1687507928.8446434
sourcedb.sqlite
Key Value
FileNamepython3-contourpy_1.0.7-1+b1_amd64.deb
FileSize176028
MD5C668075EAA3245A2B5D2451B4D414AE8
PackageDescriptionPython library for calculating contours of 2D quadrilateral grids ContourPy is a Python library for calculating contours of 2D quadrilateral grids. It is written in C++11 and wrapped using pybind11. . It contains the 2005 and 2014 algorithms used in Matplotlib as well as a newer algorithm that includes more features and is available in both serial and multithreaded versions. It provides an easy way for Python libraries to use contouring algorithms without having to include Matplotlib as a dependency.
PackageMaintainerSandro Tosi <morph@debian.org>
PackageNamepython3-contourpy
PackageSectionpython
PackageVersion1.0.7-1+b1
RDS:package_id302124
SHA-17927A08C526F54EB9B961F5F67F50B1C0EC1EAB1
SHA-25693D52ACFBEE4E53550093A390834F48D2B2249943327971F5EB5D9524141C145
insert-timestamp1712770756.9261105
sourcedb.sqlite
Key Value
FileSize191740
MD5115A9448427AD8197DE6FBFCF7B05B2D
PackageDescriptionTime-handling functionality from netcdf4-python (Python 3) Python library for decoding time units and variable values in a netCDF file conforming to the Climate and Forecasting (CF) netCDF conventions. . This package contains the cftime module for Python 3.
PackageMaintainerDebian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
PackageNamepython3-cftime
PackageSectionpython
PackageVersion1.6.2-3+b1
SHA-12C828CB45F8927CC168AFA3062EFB714566D883C
SHA-256A2CE7FB85FCA8050910CCDCC62AB3A7F420231679F0E9AFAC00E35C5070F5756
Key Value
FileSize495692
MD5A019576B60C924546526BEF3C8D4E24B
PackageDescriptionPython 3 package for Galactic Dynamics Python 3 module that supports orbit integration in a variety of potentials, evaluating and sampling various distribution functions, and the calculation of action-angle coordinates for all static potentials.
PackageMaintainerDebian Astronomy Maintainers <debian-astro-maintainers@lists.alioth.debian.org>
PackageNamepython3-galpy
PackageSectionpython
PackageVersion1.8.1-2+b1
SHA-13329D88634B019189ACD3002CF7BA690232983B9
SHA-256BB19B46B5ADC966C6645366822C58BFD0488E60F025C7D5C43498244EA7DEF9E