Result for 6121F0A9FCE4912FB293BF4942F6A8F9B22A3088

Query result

Key Value
FileName./usr/lib/python3/dist-packages/galpy-1.8.1.dist-info/WHEEL
FileSize104
MD56D74C91824A8D8556D4FF8D90732698A
SHA-16121F0A9FCE4912FB293BF4942F6A8F9B22A3088
SHA-2566E0B63BCD05FFCB26D312A604125FCDC5A437A19F144D29B2D2A1675794D0CA8
SSDEEP3:RtEeX7MWcSlViJR4KgP+tkKcfAkdK:RtBMwlVifAWK5AUK
TLSHT1EAB01201025187FB8947350280248E213BD4995BC5654028F9959211650E85456C9CF9
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
FileSize134116
MD52B9555A07348991AD30BE32C88C0E069
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-11DF4F645D5F4E44C82F73E36C3EB3DB72BD5E1FA
SHA-25650F4F90A157471B5DBB78643E9EF111909F98719009EE1D6E3BAF253CD2A4A1D
Key Value
FileSize145600
MD5E65197092E99D552EFBF3F6C9A3D3B3B
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
SHA-14687F1C3B57C59BD5C5355BA1BE689305D3467A0
SHA-256C471A29DA6A6B8EAED52A1CB08713D63686261A82FE2CE0870E69BF2C2E731D8
Key Value
FileSize44648
MD56F90F78B99B1F1A2545CB98178CA0978
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-1266B5825D5CCC4585F599026B6E0DE7890585DDA
SHA-2565F01B317C0511741B3C36C135A2B37EB791697CF1BA247439518DFD69A416704
Key Value
FileSize26812
MD5C7035DB9D4B2E22A9E6B00695B4F8CE2
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
SHA-1AD25DD18EA65D979B28450F21A649F39F977B48D
SHA-256AD5DEC266CB857EA59A74B2C9BCA5C3FE546029A033E7E484279595EE89C62AF
Key Value
FileSize125248
MD53B1D4C027B60024DA00C5025601512B6
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-1359761DBEE615A6FEF94FC18A60855AE175F16BE
SHA-256CB6D59E5F79FA9DAF1DA801D8756C88305786C53599655073F1D63BB03AD027C
Key Value
FileSize170572
MD5D5D784D0F318AB4B5FF23C50F34735BD
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-17CD99BBB054B89DF239C7FA0A9364BD69D0725DE
SHA-2562EE321AD20D49DBD7EE54323F4430BEB28DCBA72BE88B8A5FD5CD61921ABA21C
Key Value
FileSize467896
MD54C750AAC08A6DF940DC06B4BA58CE042
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-1EAB316EC84EC835ECEEF4C002AFA6F2D128D322E
SHA-2560A653C4FC49EB85B0B00AB2277BC80084207F033FF1DE59BB8CE9EBC4C01FA63
Key Value
FileSize459824
MD59A8F264377CD48FB8DC7B3B3080C21C4
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-1361783D99EA6A0F2078431DB8E02D593792153F2
SHA-256EFA8793C74D092823693B2B1F3093EFF7BF2027751FF9F63A4BDDAB8497073B7
Key Value
FileSize484484
MD5807CCDBFAF1D0709A744ABCA3F648079
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-146FECE18F5C79C74F382512CCEAD3F5ECABE728D
SHA-256654AED4821787BFE290110EA924744147FB3B5F2035CCF46AF13175375AF9BC6