Skip to main content

Python ctypes bindings for reliq

Project description

reliq-python

A python module for reliq library.

Requirements

Installation

pip install reliq

Import

from reliq import reliq

Usage

from reliq import reliq, ReliqError, reliqType

html = ""
with open('index.html','r') as f:
    html = f.read()

rq = reliq(html) #parse html
expr = reliq.expr(r"""
    div .user; {
        a href; {
            .name @ | "%i",
            .link @ | "%(href)v"
        },
        .score.u span .score,
        .info dl; {
            .key dt | "%i",
            .value dd | "%i"
        },
        .achievements.a li class=b>"achievement-" | "%i\n"
    }
""") #expressions can be compiled

users = []
links = []

#filter()
#   returns object holding list of results such object (plural type node)
#   behaves like an array, but can be converted to array with
#       self() - objects with lvl() = 0
#       children() - objects with lvl() = 1
#       descendants() - objects with lvl > 0
#       full() - same as indexing filter(), all objects

for i in rq.filter(r'table; tr').self()[:-2]:
    #"i"
    #
    #   A node has multiple types specified in reliqType flag
    #   It can be a plural, tag, comment, text, textempty, texterr
    #   or textall which will match to all text types

    #   It has a set of functions for getting its properties (most of which don't work for plural type):
    #       __str__()       all of the text creating node
    #       __len__()       same as len(i.descendants())
    #       tag()           tag name
    #       insides()       string containing contents inside tag or comment
    #       tag_count()     count of tags
    #       text_count()    count of text
    #       comment_count() count of comments
    #       lvl()           level in html structure
    #       attribsl()      number of attributes
    #       attribs()       returns dictionary of attributes
    #       type()          returns instance of reliqType that describes the type of node
    #       starttag()      head of the tag
    #       endtag()        tail of the tag, if the first option is set to True result will be stripped
    #       text()          combined text nodes inside the node from the first level, if first option
    #                           is set to True all text nodes will be used

    if i.type() is not reliqType.tag:
        continue

    if i.child_count() < 3 and i[0].tag() == "div" and i[0].starttag() == '<div>':
        continue

    #objects can be accessed as an array which is the same
    #as array returned by descendants() method
    link = i[5].attribs()['href']
    #link = i.descendants()[5].attribs()['href']
    if re.match('^https://$',link):
        links.append(link)
        continue

    #search() returns str, in this case expression is already compiled
    #but can be passed as a string
    user = json.loads(i.search(expr))
    users.append(user)

#get_data() returns data from which the html structure has been compiled

#if the second argument of filter() is True the returned
#object will use independent data, allowing garbage collector
#to free the previous unused data

try: #handle errors
    reliq.search('p / /','<p></p>')
except ReliqError:
    print("error")

#shows all the text nodes
print(rq[2].text(True))
#shows only the text nodes that are the direct children or self of rq[2]
print(rq[2].text())

#decodes html entities
reliq.decode('loop &amp; &lt &tdot; &#212')

Projects using reliq in python

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

reliq-0.0.37.tar.gz (20.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

reliq-0.0.37-cp313-cp313-win_amd64.whl (155.2 kB view details)

Uploaded CPython 3.13Windows x86-64

reliq-0.0.37-cp313-cp313-manylinux2014_x86_64.whl (127.7 kB view details)

Uploaded CPython 3.13

reliq-0.0.37-cp313-cp313-manylinux2014_armv7l.whl (100.3 kB view details)

Uploaded CPython 3.13

reliq-0.0.37-cp313-cp313-manylinux2014_aarch64.whl (125.2 kB view details)

Uploaded CPython 3.13

reliq-0.0.37-cp313-cp313-macosx_14_0_arm64.whl (94.3 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

reliq-0.0.37-cp313-cp313-macosx_13_0_arm64.whl (98.6 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

reliq-0.0.37-cp312-cp312-win_amd64.whl (155.2 kB view details)

Uploaded CPython 3.12Windows x86-64

reliq-0.0.37-cp312-cp312-manylinux2014_x86_64.whl (127.7 kB view details)

Uploaded CPython 3.12

reliq-0.0.37-cp312-cp312-manylinux2014_armv7l.whl (100.3 kB view details)

Uploaded CPython 3.12

reliq-0.0.37-cp312-cp312-manylinux2014_aarch64.whl (125.2 kB view details)

Uploaded CPython 3.12

reliq-0.0.37-cp312-cp312-macosx_14_0_arm64.whl (94.3 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

reliq-0.0.37-cp312-cp312-macosx_13_0_arm64.whl (98.6 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

reliq-0.0.37-cp311-cp311-win_amd64.whl (155.2 kB view details)

Uploaded CPython 3.11Windows x86-64

reliq-0.0.37-cp311-cp311-manylinux2014_x86_64.whl (127.7 kB view details)

Uploaded CPython 3.11

reliq-0.0.37-cp311-cp311-manylinux2014_armv7l.whl (100.3 kB view details)

Uploaded CPython 3.11

reliq-0.0.37-cp311-cp311-manylinux2014_aarch64.whl (125.2 kB view details)

Uploaded CPython 3.11

reliq-0.0.37-cp311-cp311-macosx_14_0_arm64.whl (94.3 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

reliq-0.0.37-cp311-cp311-macosx_13_0_arm64.whl (98.6 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

reliq-0.0.37-cp310-cp310-win_amd64.whl (155.2 kB view details)

Uploaded CPython 3.10Windows x86-64

reliq-0.0.37-cp310-cp310-manylinux2014_x86_64.whl (127.7 kB view details)

Uploaded CPython 3.10

reliq-0.0.37-cp310-cp310-manylinux2014_armv7l.whl (100.3 kB view details)

Uploaded CPython 3.10

reliq-0.0.37-cp310-cp310-manylinux2014_aarch64.whl (125.2 kB view details)

Uploaded CPython 3.10

reliq-0.0.37-cp310-cp310-macosx_14_0_arm64.whl (94.3 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

reliq-0.0.37-cp310-cp310-macosx_13_0_arm64.whl (98.6 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

reliq-0.0.37-cp39-cp39-win_amd64.whl (155.2 kB view details)

Uploaded CPython 3.9Windows x86-64

reliq-0.0.37-cp39-cp39-manylinux2014_x86_64.whl (127.7 kB view details)

Uploaded CPython 3.9

reliq-0.0.37-cp39-cp39-manylinux2014_armv7l.whl (100.3 kB view details)

Uploaded CPython 3.9

reliq-0.0.37-cp39-cp39-manylinux2014_aarch64.whl (125.2 kB view details)

Uploaded CPython 3.9

reliq-0.0.37-cp39-cp39-macosx_14_0_arm64.whl (94.3 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

reliq-0.0.37-cp39-cp39-macosx_13_0_arm64.whl (98.6 kB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

reliq-0.0.37-cp38-cp38-win_amd64.whl (155.2 kB view details)

Uploaded CPython 3.8Windows x86-64

reliq-0.0.37-cp38-cp38-manylinux2014_x86_64.whl (127.7 kB view details)

Uploaded CPython 3.8

reliq-0.0.37-cp38-cp38-manylinux2014_armv7l.whl (100.3 kB view details)

Uploaded CPython 3.8

reliq-0.0.37-cp38-cp38-manylinux2014_aarch64.whl (125.2 kB view details)

Uploaded CPython 3.8

reliq-0.0.37-cp38-cp38-macosx_14_0_arm64.whl (94.3 kB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

reliq-0.0.37-cp38-cp38-macosx_13_0_arm64.whl (98.6 kB view details)

Uploaded CPython 3.8macOS 13.0+ ARM64

reliq-0.0.37-cp37-cp37-win_amd64.whl (155.2 kB view details)

Uploaded CPython 3.7Windows x86-64

reliq-0.0.37-cp37-cp37-manylinux2014_x86_64.whl (127.7 kB view details)

Uploaded CPython 3.7

reliq-0.0.37-cp37-cp37-manylinux2014_armv7l.whl (100.3 kB view details)

Uploaded CPython 3.7

reliq-0.0.37-cp37-cp37-manylinux2014_aarch64.whl (125.2 kB view details)

Uploaded CPython 3.7

reliq-0.0.37-cp37-cp37-macosx_14_0_arm64.whl (94.3 kB view details)

Uploaded CPython 3.7macOS 14.0+ ARM64

reliq-0.0.37-cp37-cp37-macosx_13_0_arm64.whl (98.6 kB view details)

Uploaded CPython 3.7macOS 13.0+ ARM64

File details

Details for the file reliq-0.0.37.tar.gz.

File metadata

  • Download URL: reliq-0.0.37.tar.gz
  • Upload date:
  • Size: 20.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.2

File hashes

Hashes for reliq-0.0.37.tar.gz
Algorithm Hash digest
SHA256 96dbf90d516e9e990624b8a0d94ba27f414b7afa420c14773e0929a37280c8ac
MD5 8a7d108875e044cf24be8fdc46a9e60e
BLAKE2b-256 cbe07eed1188ba8806fb1b5332f5013677776e7cb9a7f49043e997267bc26477

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: reliq-0.0.37-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.2

File hashes

Hashes for reliq-0.0.37-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4ad6863d84019f9e3373846b1fbfdcda3e31dc9f39e3cf9dd900d5db8a060e30
MD5 623e0c669a4ff2224d1d53dc0eff153e
BLAKE2b-256 52d41fc064a41c310a8dde072ea5105d4a5c9312ccecbb62c41e5a08083dae61

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp313-cp313-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 042d3064f81ad558ebbfe543271f7a437d7f0abe97486bb11382c1832690b84f
MD5 683458631932c792cbba3cedcfc77881
BLAKE2b-256 6254c6dc1a4da2544754a8d60abaeb0fe9e260c2ce0af4f74c3b65410dbeb5c1

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp313-cp313-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp313-cp313-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4494b38f22c0e4a568f604148a6df506f8a0baf3888789eb31104a138deb875
MD5 1f0a6b966f6302dfac591d3b10e71a4b
BLAKE2b-256 b60822b617c89496665c9f3ea60136ab9d65e5073bf83803c160e9756e56031c

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp313-cp313-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 848e6e123b7f941ad5168a30901d384408d0ae155bc3e84b148300fa275436e9
MD5 5bea40eb5ad8d9d80fb39bff7325889c
BLAKE2b-256 ee50dfd4dc9b8b64c7eee37cb10787190fb983647e6403269e829727b456805d

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b141e84e83dc2ef4b99d1db82e506ae0de204e6c135fb88315d22328688d7632
MD5 58ab5b764e64f4788effd60b4b0286dd
BLAKE2b-256 b517eef4920e85bf732076e32d1ba63e7a8ff547214e8207ef65375715209aad

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 88702ead6f971dabc4ec1ed228f21368696a711b08680d76528f6cc942112700
MD5 219f52264709414a399b87c1dcc3bd8a
BLAKE2b-256 6a4a3b3a5b4c0d0696d2a594d49cea48fa772cf5b877fef7bb88ff2711f49927

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: reliq-0.0.37-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.2

File hashes

Hashes for reliq-0.0.37-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e40a80e54404b75f860a2c45fe356e1a7407c288fcf4c179231d48cac9e2f19f
MD5 8c92d5e0fa293de7350cb6b16e305b0c
BLAKE2b-256 2de425db495db95d34fbfb6b26aad9e4dfa23feb0646c36f7798d0d5c4d31d24

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp312-cp312-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d1cec6dcf4d2b88412ad38a274f3c8c50ade360000026337c60a55c4daf3424
MD5 7faf67499732ca8a80fc2fa65c0f415f
BLAKE2b-256 b04cd550fb5cbb0916e9c5a9a75457fa92079c58e07d2db6dbf08c0987598d64

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp312-cp312-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp312-cp312-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0fbf136e40ed96321e7c1af1faf9831815012033196e05ff24b498b6257fd7c6
MD5 774a1c6d61d6dd79d0ac6a59b906aaf5
BLAKE2b-256 47171815899d3f3f8fc77d021828bfa10ec8d46ffb125b65ec1f73a4bd06a511

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp312-cp312-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0a7518519087b8fe1d11fa6c610792fb84113b1eccbdb6742017a9b319a75d7
MD5 e8ff9237d6d33320d1866f7b68888973
BLAKE2b-256 25a707dc26592ba4b8814f0a9131d535c9c2bfb57a0dc52d754b6767f549d0ba

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3459ce4bd75e3e333762bccb80cb59b59fd88605cc7a8cff22efecd41bbbf2c2
MD5 3738ebb7bd36f5dba3e14a844bd27aec
BLAKE2b-256 4249fe4928f48858a96f6dad155fa840a80dd2f3bafdabe8a37703f5d7222d16

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 dab3edcc84cf3ea226e1305f99e71d1054ed4c81f8c00fbff37f902cd3207c4d
MD5 45445aff0662516ad786ca812c632694
BLAKE2b-256 a0d5dc862ab64bb38d4ddd6c2532ded822adb3b39c04315c78778c8cfe63ad9d

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: reliq-0.0.37-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.2

File hashes

Hashes for reliq-0.0.37-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 11c36515c0e26c2df26429f0b7beb8fabd4fab3fda10cac8f62de229aa73f489
MD5 c2848b64d08b3a6752683d0f191f44db
BLAKE2b-256 be00cd4a38a4ca395b5a4a2254ca06473e87ebaf1879bef93699d79443628e6f

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp311-cp311-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4addfb112bee1b539c131ae815d4eac04e7649aec46b35abe2383e4456c1e87
MD5 52d0996e3fb58b539b9a183ff0c7f0e6
BLAKE2b-256 4b09d59e04f5003dd7a7547b24450aca2caf2c1786e145f327b0e5a071db0da6

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp311-cp311-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp311-cp311-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8414583af0f89010d4d9634ac9e9812a6a44659c05455d43a87a0f50bdeb12fd
MD5 ef84fc0fb2b85a5a0e67cae52980504f
BLAKE2b-256 e9c3713a7f3099ed227b6d4c2c5e5baa0bbbe29ea57dda60ef4d4a9fa34696b4

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp311-cp311-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 755a294ce517e282c39130e8c600ed4d31a22c8a222803818540859aac91f7ca
MD5 ae9b545dbccd57c39c21393ddefa5943
BLAKE2b-256 cb7c4e5dd5cf3e574f97655299975d185d5acf5368da3bd198736ac2678c067a

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2ec9b9b7db8368f1d99d68f8f196b4a72936646c7ec3049c9c9413259bb4796a
MD5 f728c33ae72e16f43e7e12b4e18105a2
BLAKE2b-256 748c9e7ec2c0f82c2c96203dee5ab0a0940e64163d8582cbee756d5c71aa50ef

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c481f9b3c3cecb5070141dcc319f5b0e947c9a90370fb436fa4f192a35b1f144
MD5 8ae3a2f99d2d3a4c172ddc19825c847f
BLAKE2b-256 b59e83dfc201faad87a9661cd7c4320f428bafc6ef59224f3b31a3128111c4f4

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: reliq-0.0.37-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.2

File hashes

Hashes for reliq-0.0.37-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1cc6b282cac50c983c09f3d063525e2f1a563c117b55c3e247562793d933344d
MD5 97e50a5e6cf6e5538e7681ab72b6c189
BLAKE2b-256 90125c37924170df9e23ee4c0915543979244f1d1eec29d98f97e2c9583f3e51

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp310-cp310-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1e9f80193b57ab24068503e38b9efcf421267b0c3117439b957b35099027b49
MD5 fd40f13486ca7dd8180eb1ff2f7b7d10
BLAKE2b-256 dc686c7ee3b3246c9971ba30c8da112153868f68fb53c1a902ccf85405b89442

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp310-cp310-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp310-cp310-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e63756659e971d2639219e6f28570ad4e2a118fe3315745242050ab67428c48
MD5 406d046950b5883cc32eee4c35350852
BLAKE2b-256 1c66f5d0dad26a3a2a0e12a92ca400bbbfff1eea22ffae50d1c0174d818540dd

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51bbf0c9c98f80145ca66da57f34c4eac060e4b6f07dd8752bcda677558ea1d7
MD5 4da5ffb9f0c7644418006b8b76b3ef06
BLAKE2b-256 07ddc910075dabe1ddb3c27369b7349605642cd34e8fe5b484411258ad94a8eb

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cb94bf8f4518e357da0df5a516166799b7dd0c9d7c399fd7f72ff3a5121c53ea
MD5 8cd9f4f22fc721eafd5e049619048e8e
BLAKE2b-256 3edc811759ff82bf2e65565965888c90dafb855874857291183e7fb8c2d064df

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c4e2f4125773028e5d5539de88df91c644d2b91600d4da14b63247948a1bd7e6
MD5 fd7727ca758f080af5be4b6ad3be1b3e
BLAKE2b-256 ec92148a150d8b19ad4564cc386027b594a921177c360d92641fdaf886153a21

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: reliq-0.0.37-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.2

File hashes

Hashes for reliq-0.0.37-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 af2c61a7537ff18472f7cbfd7d7914d5848f7a8d3e4d2fdec22fb48c288a5731
MD5 f5a04ccdddb5a6a6a3cfd9402b45374a
BLAKE2b-256 ca6adea93da590fa2959a87116bb476640885198013c017f679312cb320164d5

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7df3e6dac8cf100a1e5794e75ad791de9a79e1576ffe020b69fa20b0309f9696
MD5 e3299c00a3c7315e1186bbd0f1d9fcf1
BLAKE2b-256 ccc47a922bdcbe3a646c3f7e5e97f2fe8ef531dbcd6de18aaa6a22b997f9d104

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp39-cp39-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp39-cp39-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5d081605f26860485670654bd76a3b1cb66e86effd38ea5a74d6571b28c9889
MD5 452ea34c45ad46c43dbbfb639f63bb40
BLAKE2b-256 9f32c5232b1ef939dd62f525a8d22f23808cca638ff61af982f72d7cfe63c024

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2aa439c5996c7f271717452f78865be34d564319bf11f5dce2fa85767ae71097
MD5 e9a973e17535cfb98947e8d02138c1f7
BLAKE2b-256 ea55e19398c8f44c1a02133d1285d9c0a86fade78d2325922732987eab6153f5

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 af879bcd2b5e51d9eada592c089eaf93d619e34dcf9c7f4d46774a0fb8290e1a
MD5 6905ad195af31f91ecf2100504911646
BLAKE2b-256 b12d04afaa4a8e7fbd3176dbb39e8de039328b3ea8ac2d97bf6a9887d324044a

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ecc4b2086f58be9c36751168859d78b20db7b4651ced19024b68d021e6d6674f
MD5 8777e1b526c42375f9b9c08233ce70c5
BLAKE2b-256 c371b1e456d0657fc537382b9a5230e91b8ff5a632f3ac4a1c5ef425da8e3bbb

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: reliq-0.0.37-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.2

File hashes

Hashes for reliq-0.0.37-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9450199aa0682cdf4ab1bffc61107ed5105286edd57907f6819ed9fcd99acb94
MD5 f6dea885386a09e762524c029f478701
BLAKE2b-256 a9cd37947f7a67c138c541192c495406743e1d9593bdf5d793fc9e6d4190c1cb

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1f18d17b28dc3d92d6a85d8a62735c9b67a99bb7879a78b0ef6b65c93add51a
MD5 a81a6bf7b9667a87f9d43bba983998b3
BLAKE2b-256 a57333952891f23f9ff868b617320874b67ded5ad66d3df11e32fdaca4f06ed2

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp38-cp38-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp38-cp38-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2b1cbb1af5d583aba3fd501e2e31c9a133e3e9131d69bdc65655dd8ff6922df
MD5 9c782a631eeafd1442a789965e90c38f
BLAKE2b-256 969e8a08d029e2c4038359fd91454bc439d922376d1f6fa9f2e049142c7e179b

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f94a9e2c6907451c9b32ca5de600a8c0ea9a45d6ae2fc7ca4260eaf30a0d880d
MD5 eeb0d0235af4ff79fb376331c60727a2
BLAKE2b-256 0943950b01a41e77fda73ad000e24612736257744bcf724cdbafb5ce2f400acf

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp38-cp38-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 51e2d2d089718adcf57ce9fa4d958cb471faea0519063f68c020e184bae695fd
MD5 d798d28488e0b532c5ca9fb7ce8166b2
BLAKE2b-256 7b471c22a745086001ff004cd2416c26ed912666f0b03f56c2bbd7cf3f5030c1

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp38-cp38-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp38-cp38-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 5d1dd323755a3b8f1d005534e8f23bd1247b57d3413e5e4f8dfb2a093a79c554
MD5 8c352be16dff94c73b311b3baa6f8288
BLAKE2b-256 d7fe190d37c150af1ea6cb1b56afae463eba145b2f6d7e0639de407293e472ba

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp37-cp37-win_amd64.whl.

File metadata

  • Download URL: reliq-0.0.37-cp37-cp37-win_amd64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.2

File hashes

Hashes for reliq-0.0.37-cp37-cp37-win_amd64.whl
Algorithm Hash digest
SHA256 88325b7ae2c626964548ffd8caafb49cae2259aa0fb539ac58c58794e4931ac3
MD5 03156e186ac55e5cc015ae7cf1e26ebe
BLAKE2b-256 fa51f7ce21bb0fa337a905234e3ee8f2b636a1f096084bcf344e3e666ccdefd2

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp37-cp37-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp37-cp37-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f15f3b9f8d38ad747f671bc8fd8d2f0794c1518c821b0162d749aa690f0ac7a9
MD5 d0a5a3697cc4f3f93dea41052b971eb0
BLAKE2b-256 7074b558af6217da34d5d3d66ccf45c46c19f05853beb0544eb58a8916f31020

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp37-cp37-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp37-cp37-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5b19ed3eeac59696eba95cdac35d93c126dba20e071a2a72552894acba9b82d
MD5 4974cabed8497cd3a6176deeabb35f39
BLAKE2b-256 88763619f1e9e4e17a3f165ed7fe8c9affb56aac9b6a87ba422f0964a47cc35b

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp37-cp37-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp37-cp37-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc5fe73f2b96eff105bd59bb53579a77289f24cb36512ff882e3fc2021a0b3e0
MD5 0a9bc98c0efc2f2c875b3909c53dc925
BLAKE2b-256 5a707d7a0bf95ede084a89a0a3dece3776ef619e0b0d96a787e1f14b55883b03

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp37-cp37-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp37-cp37-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 996214f23d4803fcf524b4937c38351dd379cf4c8e278a9773c8151873857439
MD5 1f483e71442fb725d8ed65d090b5e281
BLAKE2b-256 040424a89fb08b83020b8c3327792933f5bd2f013c422f01f6026a30adb7b73b

See more details on using hashes here.

File details

Details for the file reliq-0.0.37-cp37-cp37-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for reliq-0.0.37-cp37-cp37-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2ff6baee49beaa0777bb711db333d5260d2aee25fdc139609e5d5111483dc7d9
MD5 4b1a2cfa550ed5026c5ba11919d01cbb
BLAKE2b-256 eaf0380e6e2ee227c6cf66851f9ee627d4ff077a93e0b5508009c9458211de6f

See more details on using hashes here.

Supported by

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