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

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 * l@[0] | "%i"
            .link * l@[0] | "%(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 = []
images = []

#filter()
#   returns object holding list of results such object
#   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"
    #   It has a set of functions for getting its properties:
    #       tag()           tag name
    #       insides()       string containing contents inside tag
    #       desc_count()   count of descendants
    #       lvl()           level in html structure
    #       attribsl()      number of attributes
    #       attribs()       returns dictionary of attributes

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

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

    #search() returns str, in this case expression is already compiled
    user = json.loads(i.search(expr))
    users.append(user)

#reliq objects have __str__ method
#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

#fsearch()
#   executes expression at parsing saving memory, and because
#   of that it supports only chain expressions i.e use of
#   grouping brackets and separating commas will throw an exception
for i in reliq.fsearch(r'ul; img src | "%(src)v\n"',html).split('\n')[:-1]:
    images.append(i)

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

Projects using reliq

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.30.tar.gz (17.7 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.30-cp313-cp313-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.13Windows x86-64

reliq-0.0.30-cp313-cp313-manylinux2014_x86_64.whl (117.8 kB view details)

Uploaded CPython 3.13

reliq-0.0.30-cp313-cp313-manylinux2014_armv7l.whl (93.3 kB view details)

Uploaded CPython 3.13

reliq-0.0.30-cp313-cp313-manylinux2014_aarch64.whl (114.1 kB view details)

Uploaded CPython 3.13

reliq-0.0.30-cp313-cp313-macosx_14_0_arm64.whl (87.7 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

reliq-0.0.30-cp313-cp313-macosx_13_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

reliq-0.0.30-cp312-cp312-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.12Windows x86-64

reliq-0.0.30-cp312-cp312-manylinux2014_x86_64.whl (117.8 kB view details)

Uploaded CPython 3.12

reliq-0.0.30-cp312-cp312-manylinux2014_armv7l.whl (93.3 kB view details)

Uploaded CPython 3.12

reliq-0.0.30-cp312-cp312-manylinux2014_aarch64.whl (114.1 kB view details)

Uploaded CPython 3.12

reliq-0.0.30-cp312-cp312-macosx_14_0_arm64.whl (87.7 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

reliq-0.0.30-cp312-cp312-macosx_13_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

reliq-0.0.30-cp311-cp311-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.11Windows x86-64

reliq-0.0.30-cp311-cp311-manylinux2014_x86_64.whl (117.8 kB view details)

Uploaded CPython 3.11

reliq-0.0.30-cp311-cp311-manylinux2014_armv7l.whl (93.3 kB view details)

Uploaded CPython 3.11

reliq-0.0.30-cp311-cp311-manylinux2014_aarch64.whl (114.1 kB view details)

Uploaded CPython 3.11

reliq-0.0.30-cp311-cp311-macosx_14_0_arm64.whl (87.7 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

reliq-0.0.30-cp311-cp311-macosx_13_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

reliq-0.0.30-cp310-cp310-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.10Windows x86-64

reliq-0.0.30-cp310-cp310-manylinux2014_x86_64.whl (117.8 kB view details)

Uploaded CPython 3.10

reliq-0.0.30-cp310-cp310-manylinux2014_armv7l.whl (93.3 kB view details)

Uploaded CPython 3.10

reliq-0.0.30-cp310-cp310-manylinux2014_aarch64.whl (114.1 kB view details)

Uploaded CPython 3.10

reliq-0.0.30-cp310-cp310-macosx_14_0_arm64.whl (87.7 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

reliq-0.0.30-cp310-cp310-macosx_13_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

reliq-0.0.30-cp39-cp39-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.9Windows x86-64

reliq-0.0.30-cp39-cp39-manylinux2014_x86_64.whl (117.8 kB view details)

Uploaded CPython 3.9

reliq-0.0.30-cp39-cp39-manylinux2014_armv7l.whl (93.3 kB view details)

Uploaded CPython 3.9

reliq-0.0.30-cp39-cp39-manylinux2014_aarch64.whl (114.1 kB view details)

Uploaded CPython 3.9

reliq-0.0.30-cp39-cp39-macosx_14_0_arm64.whl (87.7 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

reliq-0.0.30-cp39-cp39-macosx_13_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

reliq-0.0.30-cp38-cp38-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.8Windows x86-64

reliq-0.0.30-cp38-cp38-manylinux2014_x86_64.whl (117.8 kB view details)

Uploaded CPython 3.8

reliq-0.0.30-cp38-cp38-manylinux2014_armv7l.whl (93.3 kB view details)

Uploaded CPython 3.8

reliq-0.0.30-cp38-cp38-manylinux2014_aarch64.whl (114.1 kB view details)

Uploaded CPython 3.8

reliq-0.0.30-cp38-cp38-macosx_14_0_arm64.whl (87.7 kB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

reliq-0.0.30-cp38-cp38-macosx_13_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.8macOS 13.0+ ARM64

reliq-0.0.30-cp37-cp37-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.7Windows x86-64

reliq-0.0.30-cp37-cp37-manylinux2014_x86_64.whl (117.8 kB view details)

Uploaded CPython 3.7

reliq-0.0.30-cp37-cp37-manylinux2014_armv7l.whl (93.3 kB view details)

Uploaded CPython 3.7

reliq-0.0.30-cp37-cp37-manylinux2014_aarch64.whl (114.1 kB view details)

Uploaded CPython 3.7

reliq-0.0.30-cp37-cp37-macosx_14_0_arm64.whl (87.7 kB view details)

Uploaded CPython 3.7macOS 14.0+ ARM64

reliq-0.0.30-cp37-cp37-macosx_13_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.7macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: reliq-0.0.30.tar.gz
  • Upload date:
  • Size: 17.7 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.30.tar.gz
Algorithm Hash digest
SHA256 475799f9cb285f61bafcfa7442585a36a06dc64926cfa212f9d2786f7c7557fa
MD5 faee225245cb958d470dbdcb143bc934
BLAKE2b-256 060a7d790e8466549b0c6717156f1f9feb003d60450257ae956917c7ea4e5e5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.30-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 146.9 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.30-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2fe617036bc3e8b91fa1efa8eaa8c66d83f7181cc2cb0ccce115cde1aa6978b9
MD5 d16fe9c9db98b81efe63df307a10572c
BLAKE2b-256 d6a1782e634486a160142295ed91d95383956322e16f1d1925dc9b2c8e5defd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 625a1a253e124da3309ca5e05ef3d0855a0a844e4491bea3fbb5b5c67c3ae552
MD5 1c4f356aea764f9269ad16ac1b1f28db
BLAKE2b-256 9360119398e9b8a9466980333d3d480ca229c2f6cbdb3b6bc8f5c34c6cbef8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp313-cp313-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e687835c99add060bbc9e244c463236123df144d906512f8a1ea73d521a4735a
MD5 2379d33ff2898716fd9668471fca9f79
BLAKE2b-256 728efc825aebce7d2a120e4ce24b8f0fb95164559e13136334af96164ed2bdf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3a03515ca48d1e9ebb40c00fcdc8087b54a1dc861c444631260d1d670f42ff9
MD5 890d3a0af8b86793ea775dad26bdf01d
BLAKE2b-256 ed9cf15d3d1eaccfc3568cc4ed51dfb784ba629cc004db1aecc1badab59a887c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 63f9986891806b0d5a0b9f5f81cb507c03cfff933a746b71c0605756d90ff114
MD5 63363352352041e708b2bb5396dec451
BLAKE2b-256 1b10c73635fe333dc22fbf06533d05006aa7ea450c887d4f9463d636e3657e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 aaa7707f5ac5bd2e66999cbcd018966e5b93e11af55143bf92ff7aeed9f28c7b
MD5 4adbbb6f5a6262575c653ea1f823f464
BLAKE2b-256 539a9baeda4294808dc7328af4e675ccda9cd00925d9c2a44d627f51939cb681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.30-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 146.9 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.30-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb5d2bb806217a7d820002ae283a624739751c6d4ed663a290722fee0108f29d
MD5 fe8e56a3649e9a0955b3c59f0bca657d
BLAKE2b-256 01105f689016112ec977fc5ad32ac86b429c98befa9ae97e0c2171ce68309e3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18462861065ad035ff75804a1f753300fa7ba68cc22336ec866906631874e072
MD5 0e691bf7aa8892d65b3a823afb24410c
BLAKE2b-256 54516b10248ed8e99ed28e3e3fb6182b85caeae29dde8a5b9a1e6027d341a32a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp312-cp312-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c74cde34059d6c33bc143acc57fb31ea9ca29778493f1066e0a26af7cc4a0a64
MD5 2bb86cefbfdac665c1786f836e448c6e
BLAKE2b-256 c2813ef75bd99f8091849eecf8c7d696d5b80b486e3655309c63dc1140f6f3f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a403778d772581574cf0025e3c061dd2e638558176d29f57035e4ac3c1c9b28
MD5 bc02a71dbd13a3f3590e28c05181f772
BLAKE2b-256 d138ff3dbb0454b3e1fafeb83b2c3f539d6e30ac0db167a890838bcb49539892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 36c816b6df640b90bfb8343b00a33fc9e759bda540bdab743aa97c0399750bd0
MD5 b8ee44b768786ddb208cb3770e749fa3
BLAKE2b-256 43c861b3de7f72fdde59f20abc5d8bc024b5719c05e668ab9fc750c7070a7227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a8566e9cfa5d5e738891a19a3ffb05118e844c98dbbea7439f667540d3a26ed9
MD5 4a8b2e0232a187dc07bb5d63d4002e9b
BLAKE2b-256 bb7a71765e6b5fa79e4a010b3e91c469e4c4213385a7126bf063ec2726619ab3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.30-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 146.9 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.30-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d9dbc7313ff4bd9ee6e4a6524e06ac643cba008848bdc3e1131b012033e3e6ef
MD5 29cf885faa14ef479e6059b7e2731116
BLAKE2b-256 a8058cab8fdecbb1e650a0b4d2ad8d8d1ea75cb2b4db9c3c07b3edc69e8a99fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93cde647da61068398f9e9b9f568aa3f5e5979b7639b67bbd6abad4a2356b24d
MD5 dabd66482622ea0ca1c2684c5cedbcce
BLAKE2b-256 e8dda9a79e5f9c1663757a8c381f7afbcbf88568914b1ce56c31e2b81ded78e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp311-cp311-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76fcaaa79586b95dd6a31fce95f5b66cad3e58c60c235cf335255b9e54537761
MD5 58e04a931f001aac2aac61f9c572bb11
BLAKE2b-256 cf5bb96b87de2e4bf1e42efe28a19ab5521f703273585da3846b74cc208ac941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b37e9da26e09f591c1aa64ef99f14ae40b4a50710c4da1028319ad80eb95df23
MD5 9df2de00652acc7f949b048538cda916
BLAKE2b-256 322d77a1b33c1557639d50fb216a8828b457a3252a5472609405a2154783eb99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 32db15c428eee357c78889fdea6f8d51f8fcc8632336101b7921bab214a522ff
MD5 fc67882b231381021ab50b5c331f2ed1
BLAKE2b-256 e9814adda3c4320716d2678368fd6709f29efe42352ac41fc6eb7bc3907e626b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 fd0f0b04de399d4a72dd0609bb1674634773466d8e4d8c70d07f4a89ed6b9391
MD5 8db833c061abdbdb4aaaf82c0aa3034f
BLAKE2b-256 f9a91c9be8a3b9130112af2022e96d8ddbc52c0f52b06ad5455457288ddf7699

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.30-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 146.9 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.30-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5aea7f20b145f94c33a24d048d0bc55683a638db425d5326c8c3dcfb3f72091a
MD5 6fd569d11d5be06e4ef0c7695ac1e32d
BLAKE2b-256 702bfc04ff27f4a613e697584993589995b7cdc64e44c0cda2814d7131fe31e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70f30acb73a9bb9a7c8ace66b0c89edd6a2101545832c797c00f2944a7ee764a
MD5 1e53064c03d3756299349d61e5b4319c
BLAKE2b-256 cb9f18cb1cd5758c3af5b236ac2f84b1dbef14cad8d4a799201d57ff8a6472a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp310-cp310-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac9980be77f3daeaddfa8db433f4f80ae6eea55e3499a89bd911448bc5752447
MD5 1108091e6184ff26199cccbdb6ec6a33
BLAKE2b-256 8cddccdd4f1d12b9dba28acd7bdd10356b23c1905cb3b3dba9f2f153247564e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc1d52bf9520db010981e5b78df6fed344c79249ecc5a19c0d55c62cc87011c7
MD5 18e0cd48825af48977ff2ce36e6092d5
BLAKE2b-256 2449c331fb158543d723491505fe166af64cd72eb82feaa1295fd41462fb542b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 051c7777ce2eb3a046b1b1f9ccc5948edb4302269c6fcb905ddab5d78ebb4744
MD5 82f4cfc59b1843446fbc56c45152c684
BLAKE2b-256 68b380e72afdd781e00ec969ba9abdd97537332ad327b337ac83a555c2cece97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9c8b60c0e8a082bbb5198fe2935f40c4fb6eb4b4ca06e073f96ee8dc46e38b85
MD5 e1669e5cbd534cf92039c6cace06e588
BLAKE2b-256 24acf76c70be0c88c0ae8bc7fbd0308d557c330e174581e2073c1f3939c0b573

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.30-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 146.9 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.30-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 955b2eeec887ec1ae26d01260892bdd95df6383e2c93fc982968e112fcf23976
MD5 a12b01bbe0ece66889b41e5965257363
BLAKE2b-256 f7f5360e45c28206d8c4807238a67e6313258f3de491659830de0f0b74a03e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8e4c12d4ddcb85a156742541534abc5aa1239f2e196b74fa589cc1491242438
MD5 27d23e2989ae62b5e1a176612a3d7ae2
BLAKE2b-256 e4be29c31315d0bbbb575660ec3cbb0567bd0236d736b4477cdb29290852dd4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp39-cp39-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2096db8fcdd46ace46b4e5882fa1516d6569503716ee5b5cd738949db2c7c2af
MD5 68b31de4fe1eabd486f0605e380b6b2c
BLAKE2b-256 ccafbf777dfcc58b569e04adbf5aa972c91c0c9e3c7ca24a1a60e9e70d669647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d3ca7da8696a5ec46e4571c296092c831cbfab3772e65f8ee5f79a2376ebcac
MD5 3bf6f14bf03cd85b9884ed539e3b818c
BLAKE2b-256 49621a15d66eaddcdae7cdaf184eb2b1fd4b5e96d8e228eb09c47ec91be12b4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 999194aa9ff3ba4d974d6b5be77c337465d2c1502b4a87b419726c783fdd8650
MD5 f38b36aa325d349d4bdd2e61d6163a77
BLAKE2b-256 23d9d6de41a62e27805defa80ee7cf99aa7ac2c084cbec2f2941998ebd58a078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2e633dc224c410a839e9a3cc906111b2739c55c7544a5b250a814bba9671cc3b
MD5 2f6069838cbab014a726c854ef11945a
BLAKE2b-256 8ab260e1e96352f60c01c9519afef80051bd1e34d97e0afdf4a7e98339b4db45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.30-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 146.9 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.30-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 281fcc2178c46d76cb40c2130d8352e57b211adcd616c1394996daa23ae70107
MD5 c517747004e7e5348e4e427d23876e0a
BLAKE2b-256 d3cda1858f337b51f83ba98d24814f78f4bbe3629316d228fe8dafa580557028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ca8e41ff68573728c3c8147470ea613a115e82631a8fe612348bd25b4e7888f
MD5 39e4b799ffab37d63a59a0d290cf47fe
BLAKE2b-256 8234adb929b49f94d6c8a739b63f3e0c34ced839d0ad049364384ad979910285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp38-cp38-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba0bfa44f05a34a91c2b1731bbbeb6eba0e3cdbed3eb19ae8c71467b0b52dbbc
MD5 71958d0e3dbeb494e6314f50bb90f703
BLAKE2b-256 741cf227e81660aed5c803b1464a951789d5d515e1c630518813c1b70267a2ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6fe6d9a814912343cc32e14a2f4cef147116d68e53edcc23d17de23c8812ce5
MD5 4fb67e3dcaaa339cbdb7218c5b0adaf4
BLAKE2b-256 ddc42e3e002d771502ccf26e0fc1f33eb25fabcf692250bef2be8f6c595f940d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 99d72d4d33208498b96eff9fdb9fd5135a80d34e79bf22157cadd440482dc8b8
MD5 5cfd7a0c500db6b49c4d40839c6d1c50
BLAKE2b-256 af9e5f5b709f3bc6d5987c4cb4846a81706690916d5b7140806f9938fc6af18e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp38-cp38-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4dfb8351a2a4ead722a1bf44771cba498e9a04205041669dcac9b1f8a437dcef
MD5 a20a0af5c0d62f95f19da18db6303627
BLAKE2b-256 31d3d4d800f44fe0f399ffd4cb4ec270fcc966e8844703f6849d19da52de4a4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reliq-0.0.30-cp37-cp37-win_amd64.whl
  • Upload date:
  • Size: 146.9 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.30-cp37-cp37-win_amd64.whl
Algorithm Hash digest
SHA256 f3bc6d2b4131c0f0ee5675be4baa8bf9452d8c7f9f8fb85ba822c1fe268b34c2
MD5 79b33013448a6c90e9ea24b5b41679b1
BLAKE2b-256 ee552b633f95de5de9de605ff04afce1729fe71cac8cdf60debaa329e5558de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp37-cp37-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a27c128c8957108b9ad08d004416b82d3fa021b66860c007723ad0d4b07a096
MD5 fff0fe16e509be7dd532ed83e4cec020
BLAKE2b-256 8afff59072618a4785bdbbf77218c7df2ffc5906583b5190b15b2933ff010718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp37-cp37-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3face8493aa0556bc68e608ba89d259a5a5f789e6868678968a7456ccff79e40
MD5 a5b6ea4b0c89fbf26617c66e670f79ae
BLAKE2b-256 fa453cc45bfa3cc4ad868d28ff8261e3eeddffdf3aef29b11963f75285804fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp37-cp37-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f35374ac9849c380ac86363677c60848a681002dff4e633570711d76cca242d9
MD5 e6620fb45bf81bc021c6a4281a0db60e
BLAKE2b-256 b9db4d7cd298960e424e9eee4f6a0a42da9294e9a16f7289c721548447f9ba01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp37-cp37-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4ff2acd019fe40a5417bb369ee8389e44b73963aa177f28d137c9fac8369f84e
MD5 45f23057f13d8a09c2176c6008c92f39
BLAKE2b-256 2a9f8f23630740bae15688f4ae3182794454c7407962b87bd93b9869e9740dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for reliq-0.0.30-cp37-cp37-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 429fbd3e580cc7d4c17a3380f2f0145de9596941132713422697d7f13c9856a7
MD5 0eb5ad3b100dc5606c4561f394dea603
BLAKE2b-256 6d5b3d92dd62cf053cba9d1cfd95307871de230d47147d2fbeb2da1584a9a233

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