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.34.tar.gz (19.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.34-cp313-cp313-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.13Windows x86-64

reliq-0.0.34-cp313-cp313-manylinux2014_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.13

reliq-0.0.34-cp313-cp313-manylinux2014_armv7l.whl (100.1 kB view details)

Uploaded CPython 3.13

reliq-0.0.34-cp313-cp313-manylinux2014_aarch64.whl (124.9 kB view details)

Uploaded CPython 3.13

reliq-0.0.34-cp313-cp313-macosx_14_0_arm64.whl (93.8 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

reliq-0.0.34-cp313-cp313-macosx_13_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

reliq-0.0.34-cp312-cp312-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.12Windows x86-64

reliq-0.0.34-cp312-cp312-manylinux2014_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.12

reliq-0.0.34-cp312-cp312-manylinux2014_armv7l.whl (100.1 kB view details)

Uploaded CPython 3.12

reliq-0.0.34-cp312-cp312-manylinux2014_aarch64.whl (124.9 kB view details)

Uploaded CPython 3.12

reliq-0.0.34-cp312-cp312-macosx_14_0_arm64.whl (93.8 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

reliq-0.0.34-cp312-cp312-macosx_13_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

reliq-0.0.34-cp311-cp311-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.11Windows x86-64

reliq-0.0.34-cp311-cp311-manylinux2014_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.11

reliq-0.0.34-cp311-cp311-manylinux2014_armv7l.whl (100.1 kB view details)

Uploaded CPython 3.11

reliq-0.0.34-cp311-cp311-manylinux2014_aarch64.whl (124.9 kB view details)

Uploaded CPython 3.11

reliq-0.0.34-cp311-cp311-macosx_14_0_arm64.whl (93.8 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

reliq-0.0.34-cp311-cp311-macosx_13_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

reliq-0.0.34-cp310-cp310-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.10Windows x86-64

reliq-0.0.34-cp310-cp310-manylinux2014_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.10

reliq-0.0.34-cp310-cp310-manylinux2014_armv7l.whl (100.1 kB view details)

Uploaded CPython 3.10

reliq-0.0.34-cp310-cp310-manylinux2014_aarch64.whl (124.9 kB view details)

Uploaded CPython 3.10

reliq-0.0.34-cp310-cp310-macosx_14_0_arm64.whl (93.8 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

reliq-0.0.34-cp310-cp310-macosx_13_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

reliq-0.0.34-cp39-cp39-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.9Windows x86-64

reliq-0.0.34-cp39-cp39-manylinux2014_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.9

reliq-0.0.34-cp39-cp39-manylinux2014_armv7l.whl (100.1 kB view details)

Uploaded CPython 3.9

reliq-0.0.34-cp39-cp39-manylinux2014_aarch64.whl (124.9 kB view details)

Uploaded CPython 3.9

reliq-0.0.34-cp39-cp39-macosx_14_0_arm64.whl (93.8 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

reliq-0.0.34-cp39-cp39-macosx_13_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

reliq-0.0.34-cp38-cp38-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.8Windows x86-64

reliq-0.0.34-cp38-cp38-manylinux2014_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.8

reliq-0.0.34-cp38-cp38-manylinux2014_armv7l.whl (100.1 kB view details)

Uploaded CPython 3.8

reliq-0.0.34-cp38-cp38-manylinux2014_aarch64.whl (124.9 kB view details)

Uploaded CPython 3.8

reliq-0.0.34-cp38-cp38-macosx_14_0_arm64.whl (93.8 kB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

reliq-0.0.34-cp38-cp38-macosx_13_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.8macOS 13.0+ ARM64

reliq-0.0.34-cp37-cp37-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.7Windows x86-64

reliq-0.0.34-cp37-cp37-manylinux2014_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.7

reliq-0.0.34-cp37-cp37-manylinux2014_armv7l.whl (100.1 kB view details)

Uploaded CPython 3.7

reliq-0.0.34-cp37-cp37-manylinux2014_aarch64.whl (124.9 kB view details)

Uploaded CPython 3.7

reliq-0.0.34-cp37-cp37-macosx_14_0_arm64.whl (93.8 kB view details)

Uploaded CPython 3.7macOS 14.0+ ARM64

reliq-0.0.34-cp37-cp37-macosx_13_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.7macOS 13.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for reliq-0.0.34.tar.gz
Algorithm Hash digest
SHA256 1fc923f923246cb73c6477b3eb3155d283a71ee2f2ea314c53a6e87e365bd16e
MD5 8c25fd7a1d87d20bcc2d645e0c2067ac
BLAKE2b-256 dd0e6a4aeaf56deabf739dc640cc83ba8a2fcfd171fd6a66b2aed32dd6a8caa4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for reliq-0.0.34-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f404a3cec4432887510eeca86131101f87df9a4d0354da193ca71dd4b3ba9c79
MD5 46641e8c6cb58535d6790f7c022c5680
BLAKE2b-256 3182d993c169a8aaa24058778072ce2ed5c093e61f66dbd8b16b693357578b5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e41707f71d0b9f9b4214a2a11a84f6a4ebcee9e2561e3118f1623ef750dc387
MD5 d34d9e120fc510c9aaee556f66be0beb
BLAKE2b-256 d993b1979601c4693269d07930e32f3f719cca1b91b4fbd5d03a7594dd501571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp313-cp313-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 025550ab224032c76bdc4aca9fc0df4084ee42696e011a3b5048323706aa4b57
MD5 7aaf059855558ea2ba90475e1b326cff
BLAKE2b-256 3c11c2bbd5be7c2d7575dc4e1aa6dd1714fdcd7190911a26589482f19c4404e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50e620f527d1eead78f015f124b268ad74f1632a5310feee6e97cfbdf56c52c8
MD5 ca9c6ca821467df690cd87a9f9bf4fa3
BLAKE2b-256 327061b72a064d8f7908fdf527af5198989d011c59d7b5eca3012c888a3e194c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 acd9544eb8a46ed882d25b2a7097c94b1e1518300f506954838ee719c9f4ae8d
MD5 a3fed34406b0dce8b034e2d262d3f63d
BLAKE2b-256 1f964e595b7a9e4676f44b6d2929f981c8ccd7086497808ba6ff16c35475f7f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f02b158dc97ed78f0b2ccd38f837e4c9eb2e84004e2214584de2766c83075fd3
MD5 872380527f7608b8fbaffa32ee21e8e9
BLAKE2b-256 86dbb40c46264287067537ec2a72350e279eb3d7a54333391504703b44a7f3e9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for reliq-0.0.34-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e53a0a25238ead26f4f1a0976555631dc422afa02f27eeb647c437b134643a3d
MD5 aa4fe8cf71853336380d98948ea1c0e6
BLAKE2b-256 bc42c5858cebe19413da5391a836bc6309af6541346a6aa58febf9d9666b01c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8c220b7bb513aa59c5618931572b78cb85ee17ec8d9edcf643dd89dfa862d90
MD5 6b1779fd77f3d76130e5ed601c9c8d16
BLAKE2b-256 984910b7ea1cfe4e43d0b75268e6b59dd1736f8082b06e4092d56158433aa52f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp312-cp312-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e808ce4fac40f0c0b42cb80ed89f0cf41dd3ed84cc1827eaa6412a86c00c94e7
MD5 13ed92ed110d2e4d08cfead57ccb3989
BLAKE2b-256 cfbf54e9ffcd629aacd22378563c94a80edd1d2c995f31b1906f1aaa71e1e3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e345f83897fc5d68c2da0b751db91e26556677b34854352ad4f9c6627ab9d5fe
MD5 98b6b05a717f1b209c88af97e0e25b3d
BLAKE2b-256 bdc7e19b9d890630c8806e08cd150767828e09dbe6e60686a246c8c5533f3327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9bb7abddb96dc4fe37f2817f249567eaaad4ce047e8a4f2101221a2b4b367e0e
MD5 5a28c3e644e9b5d51dc2056f09a37b35
BLAKE2b-256 3b2492b78ae0c1642de3d884c043715b62285070de705ffffba6e41cd976b0ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 41b02051ffb12c9f0a0ba0c0544cf035a97754426ee57c26304824b325ec4275
MD5 be512dcbbfbd35236e7c802ff6f20aaa
BLAKE2b-256 1e4e6d4f8acaeacda981f5a3b1fc1c0036a009f31ca73d126e140a52ba24b789

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for reliq-0.0.34-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c115800c8027608bd878eaa12598ac2f6f009790e71ac6e7e20b34fcd7e185b
MD5 ddea32737146200cf1f8f4231ccc637c
BLAKE2b-256 3c1f2a69433e3bdb0199879d722a66fe545e5e20dbe5985ad2d579acfe3a4b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e1354b00d916e8c7e68b7c9e85d07c4d202db5e3760a02f87526002d3bf576f
MD5 ab89edd4bfaf6e33fbd223894f1b67d7
BLAKE2b-256 a922ec08b2a1cdd92976427986c6d9b5a9a4ef5ae43c941424ab8d8c9fafe269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp311-cp311-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4c843ef57fabcc873bb1ce40596e4c5a0a009c091331eac23533217d4e7b9ba
MD5 c1f8e0fa28abbf6db23d2c8cbf28002c
BLAKE2b-256 873a32f80d5b12940b950914d3464f76dcd7893686358f8121150b0c3ed7403c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 468526ba48b39bde32b5aaaa847da281349cf1308ed2d526373c9a584d806986
MD5 b12dd31707607ea822987638cbb449ec
BLAKE2b-256 e33ea4b7f9ef1ac369b3314bb536a878f5a222a9ee788177d44588d179e248ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 dd32b8bddc5817272db3f1ddf12292951aef1cabcd5d03f971aacb9d5f3d805d
MD5 cd95cb403209677d429c027f923967b6
BLAKE2b-256 df75c6ce209fb1e4fa8a5e18f6af433d04bc6486a864d01959663361524a174e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2063b3ef5aaf611e90288e80e3c4c06bf9f48b7dc0e9b5614aa3d9d87aa0e2c9
MD5 abbd440731edd93ed98482a5034d76c5
BLAKE2b-256 933b4dc7dbdc67e2b798b652a11517a718085a0d3097c90523d60bb158309ed8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for reliq-0.0.34-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 67c11f8eedb80d6c7098d9b51fca326ca74d27053c73f834f94835b81e62c9db
MD5 0ca4b3a39c45d7e66e684da4fc0f3a01
BLAKE2b-256 4799d24872415926b14906596dab5e7077d0e586f3fd5510290ab7bae31811cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfa995dd5e18ed92f9e46ff762174daf16d56b5b01692aec82562f9caa58baab
MD5 776a6d93c39b3b4c082e9e3a92b08eb0
BLAKE2b-256 a15b4df79127ac7af71353e765469803dac7941bf830ebab104cba3e49328830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp310-cp310-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe2a31b18302d2869c57190c1dd05dc6274d21816a342d92727829a83d8a5f13
MD5 d2e36804cbe5cecab41ac782e39d5a1b
BLAKE2b-256 68c1d4909dd0e237c9caa211858ef380eaf380701616215426b06c43195705d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfa418316e671aea1b02b12c6496fef9395a1cc182f857d5efc61e9ed8e01dba
MD5 cb1af0537a3b5ae84115826ac5da6e27
BLAKE2b-256 95ca8eb2e3bad6c1651b660ff9128f2311c923dfb61a5b23b744e039a3174c0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9966b4e9e2c5b2f8907572a1581fb2e400fafe1cd4f3f3385a7551697ff3d8ce
MD5 1ee279397db8c01c844b3fb6842e0179
BLAKE2b-256 9e1411a44dc7e14e8a328788a4c5cc5e6f82ce0e6c8b5a7fc802755911538ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 60765623cd7110bb5eedd9394c901463427c575ca3c966b0839883c68e86eee1
MD5 e204feb2c1210f8b0587f67b296912be
BLAKE2b-256 ab4740cb2675a9ea777231e1a27acd1a01721dd0a4a2e78e1e1f3435bb0e2700

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for reliq-0.0.34-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8939e4322a2bfa71d05a1c98eeb4779dbb29e25dd917750a7b878f78a76d9b53
MD5 286924da49a716a97c19a82ca279a786
BLAKE2b-256 7fe4655e5c39bd770aa838d11349b60f042be18e56ceb8b1a7ac8ef18b3a84b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f51c9f063fa0e3aca6019163be6aee362c6956c90c62eb05f0b1b2d945b590a
MD5 ecc6e2b3a91d69a9a6bf1e4f2e4b14f6
BLAKE2b-256 3d321a5d2fb4b64c69e8f4edd49d82449788ea27ad2d3e06c31ca538b63550c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp39-cp39-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12227e147068c8811f4fa8b96c0a5a0354d96bbd3c22099965855a3575e67079
MD5 921d456253ab9e9d3d1efb2d493d1cf7
BLAKE2b-256 5a4132df2b675dcba533648fa0aa356e0d09bec7ba80a7511a173ac470f460c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f8a3caa1a7e33eefe20d732d836ace5575ca8a2fe49eae492a2cb3417161ca6
MD5 b58a2ae65efc3540912d7590cf35ad1a
BLAKE2b-256 d2c7f566ef9f18e078504afe047c59a97577afdd0de26096848a0eafdc65cab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 84e0c25f40c71e797301ea18558df7fb7e05a19756e3fe0a1cc05cf538d026a4
MD5 b30ac49080a8460150683d2c6b5a5108
BLAKE2b-256 5b5a448ba8aa03c55b2c57755f08a03576fa4fef047d14adda2838d54a9ad888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e195f886a229ff54a1b711d2613392b116a9c56bd557bbda004714816f08d3fe
MD5 bc123db829f7a0670b7ec73925185b0f
BLAKE2b-256 18c75b62fa82766e63c10e942c613b58d62683191ef562763e87d18ddf1e1e24

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for reliq-0.0.34-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6a75f367d72117fa2d126d3ffe0f2c1a24099bf9b4c11ec8d2d3919e04aa8b7e
MD5 0878396a4ed5464a151333bf86a7e227
BLAKE2b-256 9a8cb9ef027454a7994dccc92ab6f447bfbb866403a295876041a8fe441e12dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9810d43c61d9051118024064d36dbc9d0de99b647fc9822db76cfa28f4f14f61
MD5 f55a1c276b07b81639b38f70b496d5b8
BLAKE2b-256 631de474defc4027379315cac887c782d8d91783e1ee653606c0ff7cc2e26e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp38-cp38-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a2e3a02ad1013f4a0523cdd4f1d3f302a16f2bd0d1124603bdf09489266df70a
MD5 db89cae74efcb519d28d3e1143de4782
BLAKE2b-256 0038493e6a97a9412102447767b0f17649225c5975fde9b92a1466da97e344c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99facafb8d64c7d0d9c863e7e62af11d500c9560dda4ba7381272e5d654adbdb
MD5 7e09daa4e39585c7b27ec7d64a81aeff
BLAKE2b-256 f461dce66024ea4bc38bdac74e3938193b1bde71901b31887a9b39ed9fe9a7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 df965d9266d7dba6d572b304c4c5740e5d7f797d924842807a0441347c28b9f5
MD5 33360a8e432e3552906f7a60a47e8871
BLAKE2b-256 e60e070470b5499abb5157244c15a00b1598f9ae8f25bf2a6498aee48ff431e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp38-cp38-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0a5f2e84d9a0bf39b115d976a5233a7b6fa94b93673b0a2d463fff0eb93f64f4
MD5 8c310441ab0d687ea46f60ca73b02f87
BLAKE2b-256 c10dbf58f5a265831d210a395112af66a48711c9c8dd6ac0fbe3fdacf481dd70

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for reliq-0.0.34-cp37-cp37-win_amd64.whl
Algorithm Hash digest
SHA256 5f5383a5f36b668ca276eea375f2553f8c9e00a2ce11a04354d4afc8ad0d8cdc
MD5 3dde7251934922762d484e90981b096b
BLAKE2b-256 3b30b6981040b0e7ce33e2e90ff1d8ad307b2448f202fe3d75924a04771a366f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp37-cp37-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9104f88ca49fefea97b979eff89743a05872f1dbdffef687fa6a5e7bd53db0fc
MD5 781dd4a423bf69ae86d82358f825d798
BLAKE2b-256 bb21e00d812b9417d4255e308bfb563d4dd139b39a85b6995f97e4dde17fa0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp37-cp37-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80fcd3e2e43a9a2482af30757fbf583a43c15f975f4b4f313baa992cfdd888ed
MD5 83677697e4181ea2f8de6f96f844952f
BLAKE2b-256 d559496c69d0875fccbaa80550fdf2a5dbdb40997214d6222dcbaba09206584d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp37-cp37-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc0167ec717c25ccc339851dfc538bed48b01d39100f52b09efc62494aa5757a
MD5 140f722a1835cb7e730894f19f342e30
BLAKE2b-256 7b8736c125dab3efcbb949e90cbc50d70b1cf48600db846b4d478d1d72d20240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp37-cp37-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c8858753fca7820b6684586e08b4e8cc8cb4861ea3a8763e60a040302d46d8e6
MD5 be46cd24f72f14ff7f192e66522ff831
BLAKE2b-256 d1a3df704f18c811043f514efabe1f2d34c1ac8c12d998481e5a93fbef35e0bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.34-cp37-cp37-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 861edb55e3dd8a311735ece013a1dbac30f1332afc4e6ff073e2c658f6e991c1
MD5 86f55241e41f4330b727b5ba9fb78158
BLAKE2b-256 6c0183a8b07df213788ba8e08912a6fafd129dc9ea51d7e91056c51b0ef82402

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