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

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 reliq.Type 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 reliq.Type 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 reliq.Type.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 reliq.ScriptError: # all errors inherit from reliq.Error
    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')

#convert to json
rq.json(r"""
    .files * #files; ( li )( span .head ); {
        .type i class child@ | "%(class)v" / sed "s/^flaticon-//",
        .name @ | "%Dt" / trim sed "s/ ([^)]* [a-zA-Z][Bb])$//",
        .size @ | "%t" / sed 's/.* \(([^)]* [a-zA-Z][Bb])\)$/\1/; s/,//g; /^[0-9].* [a-zA-Z][bB]$/!d' "E"
    } | ,
""") #json format is not enforced, so incorrect script will raise exceptions from json.loads()

#   These methods can return bytes() directly if raw=True argument is specified e.g. rq.decode(raw=True)
#       tag()
#       starttag()
#       endtag()
#       insides()
#       attribs()
#       text()
#       decode()
#       get_data()
#       search()

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.38.tar.gz (20.9 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.38-cp313-cp313-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13

reliq-0.0.38-cp313-cp313-manylinux2014_armv7l.whl (100.2 kB view details)

Uploaded CPython 3.13

reliq-0.0.38-cp313-cp313-manylinux2014_aarch64.whl (124.7 kB view details)

Uploaded CPython 3.13

reliq-0.0.38-cp313-cp313-macosx_14_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

reliq-0.0.38-cp313-cp313-macosx_13_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

reliq-0.0.38-cp312-cp312-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12

reliq-0.0.38-cp312-cp312-manylinux2014_armv7l.whl (100.2 kB view details)

Uploaded CPython 3.12

reliq-0.0.38-cp312-cp312-manylinux2014_aarch64.whl (124.7 kB view details)

Uploaded CPython 3.12

reliq-0.0.38-cp312-cp312-macosx_14_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

reliq-0.0.38-cp312-cp312-macosx_13_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

reliq-0.0.38-cp311-cp311-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11

reliq-0.0.38-cp311-cp311-manylinux2014_armv7l.whl (100.2 kB view details)

Uploaded CPython 3.11

reliq-0.0.38-cp311-cp311-manylinux2014_aarch64.whl (124.7 kB view details)

Uploaded CPython 3.11

reliq-0.0.38-cp311-cp311-macosx_14_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

reliq-0.0.38-cp311-cp311-macosx_13_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

reliq-0.0.38-cp310-cp310-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10

reliq-0.0.38-cp310-cp310-manylinux2014_armv7l.whl (100.2 kB view details)

Uploaded CPython 3.10

reliq-0.0.38-cp310-cp310-manylinux2014_aarch64.whl (124.7 kB view details)

Uploaded CPython 3.10

reliq-0.0.38-cp310-cp310-macosx_14_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

reliq-0.0.38-cp310-cp310-macosx_13_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

reliq-0.0.38-cp39-cp39-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9

reliq-0.0.38-cp39-cp39-manylinux2014_armv7l.whl (100.2 kB view details)

Uploaded CPython 3.9

reliq-0.0.38-cp39-cp39-manylinux2014_aarch64.whl (124.7 kB view details)

Uploaded CPython 3.9

reliq-0.0.38-cp39-cp39-macosx_14_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

reliq-0.0.38-cp39-cp39-macosx_13_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

reliq-0.0.38-cp38-cp38-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8

reliq-0.0.38-cp38-cp38-manylinux2014_armv7l.whl (100.2 kB view details)

Uploaded CPython 3.8

reliq-0.0.38-cp38-cp38-manylinux2014_aarch64.whl (124.7 kB view details)

Uploaded CPython 3.8

reliq-0.0.38-cp38-cp38-macosx_14_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

reliq-0.0.38-cp38-cp38-macosx_13_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.8macOS 13.0+ ARM64

reliq-0.0.38-cp37-cp37-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7

reliq-0.0.38-cp37-cp37-manylinux2014_armv7l.whl (100.2 kB view details)

Uploaded CPython 3.7

reliq-0.0.38-cp37-cp37-manylinux2014_aarch64.whl (124.7 kB view details)

Uploaded CPython 3.7

reliq-0.0.38-cp37-cp37-macosx_14_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.7macOS 14.0+ ARM64

reliq-0.0.38-cp37-cp37-macosx_13_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.7macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: reliq-0.0.38.tar.gz
  • Upload date:
  • Size: 20.9 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.38.tar.gz
Algorithm Hash digest
SHA256 3a81da0e9cbaddd00c111192b16b3f792b13339afef9b60f0f93c50ae70bd8d9
MD5 0155646199b09b3f0869dc0a46400c57
BLAKE2b-256 0e8df02317b8b282d12b0f3310ca2495968cb7e04acdc1919e3d280f35d825db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.38-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 155.1 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.38-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c71abca227b9a5ca0be78415b241b1ba3e33a7c85d188dfd9756d44d308c24db
MD5 6dd1ac1b342c4766fff2c68ab0b8783c
BLAKE2b-256 f37dedc6dbee6a000529c8c5987a2d502db0698c5d0fe4925cfffeaede22e2ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40ba5c2c21b3ff26346c8cf60743fb0fc9aca93d5ee3bac33717f3c87167e003
MD5 cee0f946adaa5ac5e8c0c921322f08d8
BLAKE2b-256 ca26ee1f0ff185fa7b70891da24157d947f55c382bce9668ba2a94c8501d0982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp313-cp313-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bdc02ececeaedb0a7038c0175be5aa06d90de92609a42ac04eec2c389ccca047
MD5 f368ccf9480acb3a67a45032f3417e0d
BLAKE2b-256 4526f0900596284e534d30e22f6f5909438962a4265192d9294161e42a248851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ae84b1418d9f0a6901eae1b0311c21bbd06e77d3f8920964b2acb215fd90a63
MD5 472ebac516929649cd686268a3a049f6
BLAKE2b-256 81b126fb5e9f90e271f9f2017dfda00a2fbf7574eb6aa40be4659c2e2a1415bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b9092fe224d3c8158022a5d8865803a86b84835c0ea67ddc333f8d5edb58203d
MD5 75664b48e1728f372de7ee9aa30a3ef1
BLAKE2b-256 407fe006376f18679f58265e8e56c4c25d4f6abce219e90600efcb5fa24067bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 af64854f917b69f34343c2c23a2b22a7b716e3feb14aa5e2df869d9ff2fc48e7
MD5 0664a5d9484cd8c232eb9bad783ea35f
BLAKE2b-256 c0a75f9e8af8952626622749abaeeaed1fb0e5b36dd664dd8f30f12173495819

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.38-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 155.1 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.38-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 37bb7c08c1f9016714a5bd5590639c8bdf2c7f050f9ffd205af213a027c11998
MD5 be4c59b947424151b0cae803dd7e66d0
BLAKE2b-256 81e4d5eac63126a699d50b17942296b61175e3063e4d016cac1611e324e2ce1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d15da1a0fe732575292c65ae65545168e5248ac44eac5189a8246f259b91897
MD5 852d923e5fd864b635d454fe06ee0653
BLAKE2b-256 10ac09ac1c39940761f5f7dab61de4bf78abe4db82454b7e5d76ee4ed507ee87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp312-cp312-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8897ebaf37c0c3597c30d1bbed7f31645f2fcf272a296a08324057da62e1e116
MD5 16efd2ba37bed56663a5b2c4820d5143
BLAKE2b-256 cff19b04a30de2191fda1749199a9de61eae2f5844ff53114b3e3bd60a93c1a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 160415cccaabd042f6b28d1861c54633366e33b51e3e576d5a5a8149ae7b3e28
MD5 c53c44ec67941a07d65d5e8325da0af9
BLAKE2b-256 d2ebfe597bb200e4d3c6efddf0f8235fd4ab1b206689a033c7d5a5a5c14d4d11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 aaf9eeb32163cbae9cc7332be89ccf786a77b5da14a22a6fa6efc9411e42933b
MD5 234c645d06d52fed9d6c5051bee6d9b5
BLAKE2b-256 9043d74da1be295416beb41a0695b12076e7eff574692eef640fe319e06e7a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 303552142dc6753cbde151447c17f217d8b333d2f3b8942f21f172aef1780edb
MD5 a6a4f9eb1b7e8addcc21c7240fd53de2
BLAKE2b-256 888d2d50f298e9ef4ab92f7846f333678905033ef6e1ede5d45ec608a30fdd53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.38-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 155.1 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.38-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8778fa086fe7a4cfd341a2673cc6fda7d799936a5fcfa86a4410506c9ae386c1
MD5 0ae223eac4b4f764b0dfc84916bc036b
BLAKE2b-256 9980067344db899d0918f9af4173f0a965aa39c0918ad2674aadcd19a7078dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25a557a8ba5bdbded46f47d0c61c3345e20ea1230bba79d37468eb4543af0a9a
MD5 f04f757b1aa944c51eb18deb9bb242ba
BLAKE2b-256 0095063dec461d1aa40ecc6cc08abd35340a531941067968a55d3c217e3298c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp311-cp311-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28ad0ca132af9e880abf479a97bf08cd74c41c2914c7008b0790b001ee3a80b0
MD5 21aa52841b8e96600a4ed07fda1b2077
BLAKE2b-256 b05b93ccf0cbae00b83a4b4e9d3cb3f3e409b44d68762507f0092ab65af93ce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd6d7b220557adea688c687d62082c1e6f9b8a0e84a86abae56a0b30a80c4c35
MD5 11b3afc017fb39a028b62e34bf100cbb
BLAKE2b-256 70d66c69a48805d3f8e65f345e6641b7cde6f73bc9f787af43b2d28c0bd0165f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6371f99256e659e0b2182a52c26139d1b019fbace151094b4bc5de8d60a9e737
MD5 c1a2ef2278ed6d0a320099929226e407
BLAKE2b-256 9ac379176fb67a44f9e8276fbb7e03fa60e2ab529ba2cb96af18ee5d6886a30b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 d85776e39f1652443ec67f699b32b6d9cfa184d8cdeaf7a3b1b18a0de756171c
MD5 83c90480eed1fdc99b763df5eb9b4b0a
BLAKE2b-256 fa63baf451b0bdf841b10ea802d8d0b8663bed97f587c6dd80c35fe563fbb436

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.38-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 155.1 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.38-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d625f536ca4cf6ebfee887f3127c5806517c4fb127649f423faef6eb88063ee
MD5 41327ea77ba476705e67003818d1eccc
BLAKE2b-256 262959903d89cea69af09f52510fb35f722f5f7266911a94314a968477da2dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f920f89906d32df5a1bd4849c09cd26df008d92c886bad680afe863231e707b1
MD5 ea2cf8d48f2e33c27e300f63c1f46c25
BLAKE2b-256 2c611f119ad3a125c55d2ba601e82fced84099dadb3a57ac066a4899897d13be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp310-cp310-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f23a0753615b28446ed323ac810e99d51cd8cd2e28710900354cb5ee9bb807fd
MD5 8763a7cad35c1086b97c80c3ba2d67f7
BLAKE2b-256 073ac7052a61cc226b8e9e6bf4a66fb57b77bb8e14064157bd70ad7a2bfd387e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd9ee0764a664611e3b36fef1d2ed5db831c4581bb618c80c4419be2e09b5c20
MD5 717ebd6d443b412084b4b1ee95132710
BLAKE2b-256 8d5e3a028f121c508e1bed31d163d45a616d6f3a05a1d615ca3322c18c7fbca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ad01e8940f158d03e2c585d1a6c5e8a13ca2112b07a2ffaa9a038bf1d97c0818
MD5 b9a9abc18e8263329b5d77637d233093
BLAKE2b-256 a578a7762a7b3418a80b75bdbb9195dc0eb5a7769e56cf9ba13d2b5344131d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 d1d3657bb9247567ff9ceab661d8170b851ba212f592e26e7a7ac278bc30a570
MD5 24f3fd4345f115872cb712d21de27a31
BLAKE2b-256 7a8d81fc70d33f8be32ba50e7fe6477d5e055e77f5cd2e1773ac4019bd34892c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.38-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 155.1 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.38-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dfe6a97ef72e4bd0b3b5b3f133366196810b1298c492ab01eebaa63f23acb5c1
MD5 1af5b14dffc3635e32dd20f4e38d558f
BLAKE2b-256 85d8f2ab65e468a47ad0f4fa786cf1580b30a5152000a3ec3c28891931f3637b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 412793f913644a0e1cd462ae56080a3eb6883882e1bfd2cae6b6de66e91915b5
MD5 3c45e2517d4a09d7e62cd1c841deb9bf
BLAKE2b-256 0b77a9485e1047e26aa964a482f7e6aed8c93ef44f61eb7ce3fdf75f68c34159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp39-cp39-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 932a3ddfde57a4b65953f6d876a3effa6a3296895c35797f3e9343dc6391ef8f
MD5 57b4c99f8f48c732637ceee792bdec38
BLAKE2b-256 27f03d492507bd4873baa7006dcf056e6b5f6342fd2517def29c3d49a5d23f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c48feadd2ba409cc484d7c1de6d5201cc7dcea9d6f6bf1003e6184362ecd5c1
MD5 e98955a2e42e14ba2ce5870389289175
BLAKE2b-256 d613c76a2b8cb076469bd666de0c790fe85edbd210c406cf60ffab34ace4fb7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a07b8e34dd4960fce8e0f2bf3a557ae5ca7c71654eaffea3f01dd24d9a5a4d99
MD5 84822b81e3cf36cff22386ccce6216e6
BLAKE2b-256 eb7ddc5655f65625c773ca33f92a3bda4ab884fcf611aeae1a59b824b7dbd2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 181826c60ab8686fe7beda6a5062e9c8c94e85897b670b73cb29bee45eb46297
MD5 c10139810bfd48c471a914818b781479
BLAKE2b-256 03bcd70fd5957de7b5dd953c12d2c6fc13a400cc582d8f14480e739971fbbdf9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.38-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 155.1 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.38-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6683dfb9ced644766e96549593c3fd0a8e98b33967e7383a5ae556d9dba28653
MD5 ad648949a11c20eb6a415cc98fdde844
BLAKE2b-256 10c11f808989185eb9bec57f473ad68618f57e4b9030360b30494aecc2100a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c45d11f7fcc019d16d4ff6657715a2fae3e488b5f683e3e676c59acee4c825ee
MD5 e65584eb09df0eb447e6a5377bdd499b
BLAKE2b-256 6037f5836928db73c38ace9931770b94dec049502696b2d18b0ce4823868e427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp38-cp38-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1702e003da1175e023ca6731cb3cbd11b23aecf139809e04a2a5c20468447448
MD5 1377dd17795941569f62d7f4cc2882de
BLAKE2b-256 9e6fa01f751751a06b54e75d6e996d967dbbab3b946e250d3955a38f15f6bcac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13650648609a031632f5711a7179b9f06ae8ee8b7b6a9e9c065ea7b5ca8e1224
MD5 2ef2e3ea2f989206454fb6ad720740d0
BLAKE2b-256 2156bf6c8bbdc343e5a539f76af4820321deef8946c5c9313bb3d40266e7c050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 676dc92ff46b501bb0be0b3a332ad11093a659d281c83db34a2f09d8e0586d57
MD5 bf17cf5691f9435649b3c1076d011935
BLAKE2b-256 0f4e7fa32b5122c345c5c02afc7ee5fb7c5d0107b952d3969f95876f08e96d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp38-cp38-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 34b25e30b444a541b402034dd49f8daba39f294e842fef20498d3906a99bfab6
MD5 480b6bcec29e92020a4ed8571f24c7a2
BLAKE2b-256 6d02ad626f4eb02fec0159334c71917c9a6554453feb5593bd9105d1bff2d3cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.38-cp37-cp37-win_amd64.whl
  • Upload date:
  • Size: 155.1 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.38-cp37-cp37-win_amd64.whl
Algorithm Hash digest
SHA256 795bf4ece74772b9a3542c289d1de17ea27965c773a29fdeabf7bcf41ff85d6d
MD5 251a2da8ce0e4e78f88b24fbf6fa1f09
BLAKE2b-256 d055389f56527bd5ccaea0543568f6defa5b050e4035126049798da1c8328d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp37-cp37-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77089f0486d056eb3e1abe84f204eaa0bec700454ae4b71821e5576258a66b88
MD5 e7491f709dcee44c6735a5297882ab2b
BLAKE2b-256 566e3a4c19a4ff64e0581c345e640af4d880abe8b7402c41ad17215efecd7bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp37-cp37-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a105beb2c5166b1baad68f1d6ddecf9466c72dc3f8b67c919690e5f182fea5c3
MD5 516dfab21c3ea1ae978ee0403f282a6a
BLAKE2b-256 bd99ef9424f82d93a936997976dd6da9e716aaeb7e20d98b63cd1e531d46993d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp37-cp37-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 263f8c8434be11d34ce983ab80acad73369723d769dd58e25a9593a91e54eddc
MD5 1b1441af8e2891caa8664821f216a8cb
BLAKE2b-256 d9960de6e2665d223db877c0172d936606cabf8694a4ad05caaf458f6510483e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp37-cp37-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5ec52ae369f8e7ef09bb4bbf79d708ed7e85f847f5300e9fd8b67536734c058c
MD5 a819709f2a50ff15ba9517077a4dfa99
BLAKE2b-256 6c546e2f977bc344268fea402fb546951880630f3efc84b259c3f777c40f4e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.38-cp37-cp37-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3fa6d52399e989f03dc74b33d0f534373e86af5b66f83ed2be57b63b4c9a8df9
MD5 7b646b53d342c63e44cbc7817957c434
BLAKE2b-256 c2576b6efee7782317889316e9e55c77f7d0991fc054b62301e015df12d90190

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