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.35.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.35-cp313-cp313-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.13Windows x86-64

reliq-0.0.35-cp313-cp313-manylinux2014_x86_64.whl (127.4 kB view details)

Uploaded CPython 3.13

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

Uploaded CPython 3.13

reliq-0.0.35-cp313-cp313-manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded CPython 3.13

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

reliq-0.0.35-cp312-cp312-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.12Windows x86-64

reliq-0.0.35-cp312-cp312-manylinux2014_x86_64.whl (127.4 kB view details)

Uploaded CPython 3.12

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

Uploaded CPython 3.12

reliq-0.0.35-cp312-cp312-manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded CPython 3.12

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

reliq-0.0.35-cp311-cp311-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.11Windows x86-64

reliq-0.0.35-cp311-cp311-manylinux2014_x86_64.whl (127.4 kB view details)

Uploaded CPython 3.11

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

Uploaded CPython 3.11

reliq-0.0.35-cp311-cp311-manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded CPython 3.11

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.11macOS 13.0+ ARM64

reliq-0.0.35-cp310-cp310-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.10Windows x86-64

reliq-0.0.35-cp310-cp310-manylinux2014_x86_64.whl (127.4 kB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.10

reliq-0.0.35-cp310-cp310-manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.10macOS 13.0+ ARM64

reliq-0.0.35-cp39-cp39-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.9Windows x86-64

reliq-0.0.35-cp39-cp39-manylinux2014_x86_64.whl (127.4 kB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

reliq-0.0.35-cp39-cp39-manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 14.0+ ARM64

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

Uploaded CPython 3.9macOS 13.0+ ARM64

reliq-0.0.35-cp38-cp38-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.8Windows x86-64

reliq-0.0.35-cp38-cp38-manylinux2014_x86_64.whl (127.4 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

reliq-0.0.35-cp38-cp38-manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 14.0+ ARM64

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

Uploaded CPython 3.8macOS 13.0+ ARM64

reliq-0.0.35-cp37-cp37-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.7Windows x86-64

reliq-0.0.35-cp37-cp37-manylinux2014_x86_64.whl (127.4 kB view details)

Uploaded CPython 3.7

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

Uploaded CPython 3.7

reliq-0.0.35-cp37-cp37-manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded CPython 3.7

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

Uploaded CPython 3.7macOS 14.0+ ARM64

reliq-0.0.35-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.35.tar.gz.

File metadata

  • Download URL: reliq-0.0.35.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.35.tar.gz
Algorithm Hash digest
SHA256 10b51623c7a0703cfb0129b1028354dd9e9c3cf1452df0be36930121fece62b3
MD5 ab4aa8c868bf792c4918c66f8966c908
BLAKE2b-256 2b21a274bff4f9c05ab056a81459f2d3fec2d8e9bf3a69304c6f6d3fbd35639d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.35-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 154.7 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.35-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bac4283f822255fa5dae3797ad2931f8df287c038ab7c8a5db6021f694e6c20b
MD5 5d3200665172624582977f2f517d9e7e
BLAKE2b-256 7abe7b5e2fd8aee00524482452f90cba048a22de382e8ce27337832c1446b297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c284e243d88f3e4c21452acb4de560e650711156980b6733c84c85af932f627e
MD5 d26f81ad950685e85eb5ff1fcabde1e0
BLAKE2b-256 cd1a0352ee700c6e49b39bfe4bba226d0b69fc5509947781c7b6163f73b20e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp313-cp313-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49cc186a645ab2ed4d4187445151804a6b354e57e3964d07a1a9fac6fb7e4e65
MD5 d2c93ef2f7ad8974455ad1e16d409f66
BLAKE2b-256 5671cc0964975526bbe662a11fd219e3fbd63845d15eb4322b1f77297b60961a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67654f88ea784c453d8c7485b38f228a4e904d168ee21bbd5f9e51b3b8774faf
MD5 cc7fee05d897ccb5ed0053fabe65842b
BLAKE2b-256 c94ea8e835b92d1f256b6110887eae60f472d5ee7fcb7d5f020d8f16c51a9bd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e3c05552f207470538233b77cc3ad18879a8066b74e7a4a9283fd46826ba7172
MD5 0b0cae58ddb2393d0c3e383cce6d78d2
BLAKE2b-256 8688b784f3b741c804aceb3419e4abf1ec7f62e7439cc7c414041b4c566e1738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c95fd95dc6e65ee8049ea3e6f429a8782f3d1e4861a4e7bab5fdea61698eaef6
MD5 83b2fce122f78c4312fca807fbc079d8
BLAKE2b-256 25217e094beec1f09ae120f20c58c181c588a1c969aa16b884782052c6211810

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.35-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 154.7 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.35-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d2ffe4784205cbfa5bde0303c4cc948fddb208823694c6163bca98c3240a28b1
MD5 1b76d73e3b7ab0216860f6a2211b14ee
BLAKE2b-256 0b8e957c9b7445b97355b22470b254a5e7092776e74d379a2fd231d8f5ed9f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 422359ce1803e1c7d02c76f08c72fac2facfc3b052316fb9ba5fdc8c71b23d6d
MD5 86b2613e8a4372040df1100b674baa0f
BLAKE2b-256 1654121be7590167a3bd64328b2087950784b46f5bbb32819ec8d1831d796f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp312-cp312-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77ada9efc48ba26138ed7642a4b52266a6448b254ca7f6712db736e3c061e358
MD5 6f5e26bf3c700ee850c8d1719ed5669f
BLAKE2b-256 d1b85c8a34832459dc6e9f17900831b4cd197d943a16b3762b011e5f71d36bfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 122c0db4a3a033d375c0dd4a83891c3e231a276794764aaa15ac6907d8a954a8
MD5 3ca0a716757860dcdb4587a7e9fb2906
BLAKE2b-256 13f1c9c585016c0db41e0d687ce90f6fa70e1029e6522037f3561db3d7da4ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 70723ebedf8c154da39032c5a34e97d4048649acf5859786f03ab1c23619829a
MD5 101b59b34f6ac2a054c7c2ae17c286cb
BLAKE2b-256 2396d891ecc9960854f1a663749fdca7f9b2f514639a9b0774a30b4664bf8177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b7925bf518716c49425779b8a5a3f9cb4df1b079d83a1ef8f4e70eaca4418396
MD5 510e13b9dc323d9fa974f094dbf82eda
BLAKE2b-256 b896d59fd7aa0bd27847c361669c9ae259a0b57229de950b370aca92b1dbf814

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.35-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 154.7 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.35-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3526519e22468c61477dc8af9cede6b050bbc10e51d6b109c4859f76cdede46a
MD5 3bc21727035999b47269bfc6a9672e47
BLAKE2b-256 ae1262a79e96600ad7082e829340920201f1fad11411ecb1cb1877a1891e8753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be53f63cada4ae14c6e52ab8e7549dacc4cf74b65d8f18bd4202a2b960772652
MD5 2e5ab76f197b152140cfea964a38eb2f
BLAKE2b-256 8e789dd4608f8764e7225d70bd2937315b7e2d1bfeec8e78041ab10196577598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp311-cp311-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01f0a2801abc7bbec595dc358360368ed9667633c2b101c4f674014896a2f253
MD5 7e870f543b89def0e8307764ade8c7aa
BLAKE2b-256 ec828ee2fab116269ab2f9ae24a075bc2cffe152a30a7950b0230d1ced5e3c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daa955d2554957601017715259ac6ee1890a4e015dd2d9029df72d57692bcaee
MD5 70e48be94d5b60b498258acbcd7d976d
BLAKE2b-256 258ab7a61d8f534007de0dd8a087cb1779efe9f77d05a3730cd5a22737dd465d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 175828e334cefa2681bb288f397a8d409120c8ae3f923c81bca4e53bff080259
MD5 91b1a0f54e6919e6baacd45a9c8447c0
BLAKE2b-256 7dbc197086b3cce1ae9be5204d31337e9dcafc24999f2b428cec71a373f8a88b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 91ddb9f79defc7cd8316b392ced8e8ec1e521dd5c39bad0f9e112e8337a65ae9
MD5 3eb503034c6cebc41c7e3ac80604a07a
BLAKE2b-256 2a695c3c6aec84bba1bac7724bfb7b3cb08c85ceca36c3c2432426138e715ca0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.35-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 154.7 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.35-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d1c5179bc1216867b4e6b4cd57c637d3c398e6d06b0bab8863ad0e45830a4719
MD5 a6f056c7aac33afba030c69b8d623a47
BLAKE2b-256 b0d2c2946d99a405c5f9d054e43297a3383f884bb8530fbde7955d77db030863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb46af81ceaf0c4a9e33580fd1698616b36e9fd86c78e7e38297f76fecc2b5db
MD5 62e208bcf07ac613a32daf62cd82a2c8
BLAKE2b-256 fa14795b715b9ffa1d4c34ca22729400c89a8195f687c9b76aabe587e5deadcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp310-cp310-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5d6406c22f4b06997870af7e20be4967e6c2cfd8fca2cba0f24152a49c4f872
MD5 419f20b73d160faaa51accf8b2b45b31
BLAKE2b-256 cde2bc5b1809ac60c8a6c5dc99f8002783001aaecc9aed7bb064280f0b4543a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 050701e902959281658f44c9df0259aeb368ca71599608eb7a1a7ad5252b95ef
MD5 fb07c7c4e7ae848c3ebbc6178b8082d7
BLAKE2b-256 41e60aa627252215399957e73b88498d05fb0992dba303cd7f54caf3e7f3ecd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0dc07015525d0a8681526a6a89db14c66e2f2274948e5db1a5dc3a35bb597afc
MD5 4413bec038e8e9da67b14d060006c89c
BLAKE2b-256 b8313a222a4dec7e554b5d36ec9cf502adc4c990dd6052e653a1e0b31a991936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 69afa2b7a6cc8c5c7eb004b53f7487c45d7dd8c47720f6c78f22129016caaf35
MD5 a4fea158ab085a12a9e2517d65bcdefc
BLAKE2b-256 71f0a8acf3f034d21a936e7225adb85d890642afcd17f73f26237cf8bb8fd6b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.35-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 154.7 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.35-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aaa847f48760c0f149f86beff75b55d689bd76ffc41fd2befc3d6cf93dd4b556
MD5 3966226bbb08770f58db12592755f4b5
BLAKE2b-256 e47e16789edf79cac274b7cedb6c5d40124cea9d9d4bf5bba6a8f808152aac88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 754c53870a270424c11e50e2d1a664a771a8465f12c99c8a1e3a31d5fd3ed4b0
MD5 d06e7cb585aff1ce2022df636ee74330
BLAKE2b-256 f8701ee87fb208f063362b188e2e9ec1ae98efc87e8eddce33edda4a2950178a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp39-cp39-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 784a4271376caec7f7407d2bf70b2e722d8a7b646fec3876926bcf9776838fc2
MD5 f6ab2746e9477b4045ef3b8fbd0c38dd
BLAKE2b-256 fa8f5be91731b58c7ad4e9e3781f20973de365742a024ced2166fc623cc6df15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51d6be77b619fedc56fcd291465ce2baa53d10ef90b01eb09bd3d21cb1cc1442
MD5 4d50632c6c7fd312a44aba81cfadf110
BLAKE2b-256 9a281e67e238bce3dc4a7faf793f8df8f635105ecf501545d5b1f6396dd174bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 563e5b186081feff1fc598e9b108d862ea8b123716d72ccd032e869e2e6d5d92
MD5 b8bfc9956d4aab11166ae76510542811
BLAKE2b-256 ddaa372e9835c9b4f1ccf6efd4c4029ec6efb261c4bb2bfd237fb8d84aba3586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 cb8b486c121b28bcecca635a8dc8398942e6e3c3098201eab5b8beac5ae88234
MD5 e4f6f34cb72dbfd6662f40d2db358647
BLAKE2b-256 4051d7bef96eadffb24ae4477a27f93093da9242f29162445d6f59bd1184e0bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.35-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 154.7 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.35-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7d2bec46e60ae4234cfca591c52761df6608741cae1c6f383ae863818e6992e8
MD5 147ddd6826bea9e02c7e1c114e170090
BLAKE2b-256 2cd25539f656816ba077cde777d6c1a6ed712586a02014c57d7e3282a60cfb46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 900d6e3225cfa87c65fa69d1e81214aeaeef8e4813dd6ddac3c1afa4d5fda052
MD5 4da0d016996038ec9c41544a2910b50b
BLAKE2b-256 58ebea862898e40ad5275e31a782f9d7be5888c52663c2e58efb7e7fef52dbe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp38-cp38-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 abe51b7cb57aef188179d1cf284e9bb6e2de1974cf68ba011565a8336ab236ec
MD5 2dd484dd45abbc495cd92516074d055d
BLAKE2b-256 4169332d7460605fc126f93a04f688f56ce2f706a029b0a54efbc6edf09ba252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ae20e8321ddaef4e70d0f6d6d0e435b53d69b5623dfcf9ce1621f6531c5c478
MD5 10678531ad7748a4bb1fd98f68a666f8
BLAKE2b-256 f71642690a84fd86e20158188ec0640ad48862556f9b3cf835440db8b9931660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0e469414de4166100bf67a723c57bbad39bfab3defede0e51cbb05bdd7e72702
MD5 938f9265712a63e9ebc14fcc16c43145
BLAKE2b-256 6771f62239e1ad36b9ac5ca0e006dc5ea3db188e1562b5b2f05e05c6ef5ade66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp38-cp38-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2d8e34ff6fc40d3edba75b14b6980f6ed5df11549fc1d111873b0e755ac349c3
MD5 16a257de938d21359aa0281fc504f20c
BLAKE2b-256 957ba40cb9fa2c00097f30b2048fd4369a4dab41889ea973651a63bfd94f1bf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.35-cp37-cp37-win_amd64.whl
  • Upload date:
  • Size: 154.7 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.35-cp37-cp37-win_amd64.whl
Algorithm Hash digest
SHA256 d099a4b2dd8784d06a4725da70440e851ac904ac662d3e5c44081cbca7f26cc6
MD5 8c4902653f9fd27356216a8ad4472192
BLAKE2b-256 afcf945f0eac67e92f384aefda404b687f5e622f0fd3e62ad791583ddc36d2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp37-cp37-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce697b431fff12756fd3188d6e99b8960113a1e919128d34571dcab1c4295e0c
MD5 573aac91f51c02fbd0590a3e0e6def26
BLAKE2b-256 0c52feded87223309f0cf006812d49b1aed6883a4b02a04f5437ec73d19883b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp37-cp37-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a661e6a0a98d10af20553fcca9a038d15f76dd4932ce4d8ccfd33b95e735a3a9
MD5 75496a1f065eafe3288a6a3f26c676f9
BLAKE2b-256 6d6958e3fce10d16ecd86657e94f228115333781a0ebbf88b6333daccca01c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp37-cp37-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02b7b32189cf6326a9a0f9e86d6c58244e5717da42050c1b650c6bf197be4275
MD5 a99172ef55fbe58a1aa8126cf44f042c
BLAKE2b-256 e7886bd5a53e384292896e0f8c801100209d8b931d47eb401eed1ab7d91d17e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp37-cp37-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8c69e60f6379f799f805fd38188237c6ca610d746ea2b00b306de64aa6322a17
MD5 7f907871a4d283ccdc626224682be904
BLAKE2b-256 65ae825870284b26e7faf00b4e7da4378a9ade4fd94feb1004d4958ba363cc74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.35-cp37-cp37-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 56e629eec2298a8b6ef42eb6bc4879055e17d1cd04b2150840670a81d1093f4f
MD5 e4efe524f99332036fd52671a8b31978
BLAKE2b-256 bde354b46f0ffa364ee451b72fcea8dccd4543b430552ae1b74831378d0c97c8

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