Skip to main content

Вспомогательное ядро для построения отчетов на базе XLSX

Project description

report-core

CI pypi Supported Python versions

report-core - это вспомогательная Python-библиотека для построения отчетов в формате Excel (XLSX) для проекта, предоставляющая удобные инструменты для манипуляции данными..

Установка

pip install report-core

Основные компоненты

  • Service: Базовый класс для создания сервисов обработки данных и создания отчетов.
  • Book: Представляет книгу отчета Excel.
  • Sheet: Представляет лист Excel для создания новых листов отчета.
  • Cell: Представляет ячейку в листе Excel для создания новых ячеек отчета.
  • Comment: Представляет комментарий в листе Excel для ячеек.
  • readable: Модуль только для чтения листов и ячеек Excel.
    • Finder: Помощник для работы с несколькими листами и ячейками.
    • ReadableSheet: Представляет лист Excel для чтения существующих листов отчета.
    • ReadableCell: Представляет ячейку в листе Excel для чтения существующих ячеек отчета.
    • create_finder: Создание помощника для работы с несколькими листами и ячейками.
    • find_cell_by_coords: Поиск ячейки в листе Excel по координатам.
    • find_value_by_coords: Поиск значения в листе Excel по координатам.
    • find_cell_by_regex: Поиск ячейки в листе Excel по регулярному выражению
    • find_cell_by_str: Поиск ячейки в листе Excel по строке
    • find_cell_by_letter: Поиск ячейки в листе Excel по букве
    • find_cells_by_regex: Поиск ячеек в листе Excel по регулярному выражению
    • find_cells_by_str: Поиск ячеек в листе Excel по строке
    • find_cells_for_rows_by_regex: Поиск ячеек в листе Excel по регулярному выражению до определеной колонки
    • find_cells_for_cols_by_regex: Поиск ячеек в листе Excel по регулярному выражению до определеной строки
    • find_cells_multi_regex: Поиск ячеек в листе Excel по нескольким регулярным выражениям
    • find_cells_between_regex: Поиск ячеек в листе Excel между двумя регулярными выражениями
    • find_cells_range_rows: Поиск ячеек в листе Excel по диапазону строк
    • find_cells_range_cols: Поиск ячеек в листе Excel по диапазону столбцов
    • find_values_by_col_rows: Поиск значений ячеек в листе Excel по диапазону строк и столбца
    • find_values_by_row_cols: Поиск значений ячеек в листе Excel по диапазону столбцов и строки
  • column_number_to_letter: Функция для преобразования колонки с row в букву (1 -> A).
  • get_letter_coordinate: Функция для получения координаты ячейки в стиле A1.
  • DEFAULT_COLUMN_WIDTH: "Ширина колонки по умолчанию".
  • DEFAULT_ROW_HEIGHT: "Высота строки по умолчанию".

Возможности

  • Поиск листов по имени или шаблону
  • Поиск ячеек по значению, регулярному выражению или адресу
  • Манипуляция данными ячеек (установка значений, формул, форматов)
  • Получение информации о ячейках (тип данных, числовой формат, стиль)
  • Работа с датами и временем
  • Создание пользовательских сервисов и форматтеров для создания отчетов xlsx.

Пример использования

from report_core import Service
import time


class S10406(Service):
    def summary_0(self, sheets, **kwargs):
        sheet = self._add_sheet("Sheet1")

        print(sheet)

        for r in range(1, 6):
            for c in range(1, 6):
                cell = sheet.cell(r, c, f"Dynamic value: r{r}:c{c}")

                if r == 5 and c == 5:
                    cell.value = "100"
                    cell.formula = "SUM(A1:A5)"
                    cell.style = "Style A"

        print(sheet)

        cell = sheet.find_cell_by_letter("E5")
        if cell:
            print(cell.value)
            print(cell.formula)
            print(cell.style)
            print(cell.letter)

        fmt = self._fmt_0(**kwargs)
        print(fmt)

        return "Summary"

    def _fmt_0(self, **kwargs):
        for s in self._sheets:
            print("Fmt --> ", s)

        return "Fmt"


def main():
    s = S10406("conn_or_session")
    s.summary_0([])

    print(s)
    result = s.to_json()

    print(result)

if __name__ == "__main__":
    main()

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

report_core-0.9.2.tar.gz (39.2 kB view details)

Uploaded Source

Built Distributions

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

report_core-0.9.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

report_core-0.9.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

report_core-0.9.2-cp313-cp313t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

report_core-0.9.2-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

report_core-0.9.2-cp313-cp313t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

report_core-0.9.2-cp313-cp313t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

report_core-0.9.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

report_core-0.9.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

report_core-0.9.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

report_core-0.9.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

report_core-0.9.2-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

report_core-0.9.2-cp313-cp313-win32.whl (996.1 kB view details)

Uploaded CPython 3.13Windows x86

report_core-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

report_core-0.9.2-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

report_core-0.9.2-cp313-cp313-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

report_core-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

report_core-0.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

report_core-0.9.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

report_core-0.9.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

report_core-0.9.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

report_core-0.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

report_core-0.9.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

report_core-0.9.2-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

report_core-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

report_core-0.9.2-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

report_core-0.9.2-cp312-cp312-win32.whl (996.2 kB view details)

Uploaded CPython 3.12Windows x86

report_core-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

report_core-0.9.2-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

report_core-0.9.2-cp312-cp312-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

report_core-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

report_core-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

report_core-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

report_core-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

report_core-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

report_core-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

report_core-0.9.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

report_core-0.9.2-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

report_core-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

Details for the file report_core-0.9.2.tar.gz.

File metadata

  • Download URL: report_core-0.9.2.tar.gz
  • Upload date:
  • Size: 39.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for report_core-0.9.2.tar.gz
Algorithm Hash digest
SHA256 4896884850bd793048c22f63611ec77a6c4a5d58605b29cf5d9e4a4c63c570eb
MD5 87aed07fe09bc2d9083b5b7070d3bdb3
BLAKE2b-256 8f3c874d72a5382738115aa029ce4688962f74978562f6c9575d56a56c84ac63

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 326a2eb11d51004f66ba45f3e621dbc62c8592b9d946ff34a3270624622ef58e
MD5 d78dcd7a2c24577ff395e627a0dd683e
BLAKE2b-256 80f61fa0f3a353f3e0bd25aead665b32cb6c01545f442e15a00e10bbd06a7a6d

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 13b822c1c7a21a846a0b8adab3bcd3e4ac1f72bb64c275e0ec76f0d5eda55eae
MD5 ca6585f5196077a44e610f770bc3ec46
BLAKE2b-256 0d9f265d68dcd19fb28bb3cab0f47237ad36c4f256a0b76fff0651b18a07e80c

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9bfb80580843e9af22cf6d73dda7cec39d56cf774493ec55bbdfb704c3cbcda
MD5 43f3d04a04902ca8f329bbfb716a118c
BLAKE2b-256 abfe83a0a88c2a62dbe8a2e074b77893a61298b1cd51772a2407cf7056356363

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f042d1cc4984ecef08b50e75419a9eddd411c5b4688120b8f41dd9c46e44682
MD5 0bf9db17862383d31443ba33a10d9d8d
BLAKE2b-256 e0ba6ec9cf7bffbed37605ae2b9d2a8c388b6625989afd6d2c4c5d7dc0248faf

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd54438dca3c6ed3c3a1998c175b944e5f43e83aeb5a4d81e7f4f410c1bb6376
MD5 f9e4ae0ea353e03f54b271f0ebf61ca0
BLAKE2b-256 29c27c0527a5349eed73a20d23c83e8ee2c1760514f13c7bec814ac0874a137f

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c48778c190a79df4054aeaa0dda4b0b60201ff6828402ceb32cb1fd33914b45
MD5 61f402a4d889258f8b24a702a8c3bcba
BLAKE2b-256 200901c71956940e8ef31bdb864e44575c86a9aa61e126cf7e3b50ec53b4de0e

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfa60c1ccf0105305ed7a3043c0cb353ddac4d578957bf2b20654ecd67725636
MD5 e770e2935fc810a72cd5567306410f79
BLAKE2b-256 5e967159074dbc415275ee44680e1119224447bb6af81b1bb9e00eb84a0153e7

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f26206f0a0373ca126ba8d732e31aa41d20a5431fa37de42cec2ed241d879941
MD5 844fc749f15a458a0eeef480facd0aad
BLAKE2b-256 3e68ab6fb193c4de71cf0c27f9c5c30a23416a28f828b3fd946f9455bd40e5aa

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6a3569a6a2cf7e41bac57f37088d92b4a5bc2cc9b0e352bf3910e142749f09d
MD5 5db3b39f7efc0540e9a64456729b3665
BLAKE2b-256 f1875ebda5504c9adf8d53e16928f10feabc8de45abb419561167a9c08a14a47

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b178c7278c3edd638f809c9adc984b81e0318f36549e12a01b63dbf680cac9b2
MD5 ed566ddfe0f338f6d20456b60bbffce7
BLAKE2b-256 f8c487181b8b0de04edf2d43b2d0a48a8b6413cdc10976ec370711eff9b81350

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 98adaa79faae93022fa492a94193932bf626b4731cd285930ecad89f167407e5
MD5 fa3319e6166631b7232c6d4e3df0f589
BLAKE2b-256 8980f8685130732e00ca8a1721740161107f2920683440b84ee60136af0801c4

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e9290b8f33f21bf1b01c32a61b725fbaeb8b8efa5ad62f376c88284d493dbb01
MD5 eb33d03eeb44ff555c786ec3997cdcb3
BLAKE2b-256 d143f217cb28eb90172d8c047bb689d107c98cea2ed5fe4ed6f40cbc7f71ae22

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40b3ff04b27e1cb15f72ad7333a4dbb83801a0f2c8a9af17d21fad9181b48c42
MD5 b728426cad1e6883346fadfd064bee8b
BLAKE2b-256 a5206306f3359b7e55d82d669dadae81635a131033ec66cea80f4e17cde463a0

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8761f9b69c2c4e69fd21b6101da33487972f20607535da1425a376f83cff9c0c
MD5 037831cfc5f6f2cf338fcdc80163a32a
BLAKE2b-256 ea7955f999b6cd155d99527336da0bf615dd92e70e5fc0e1df387dd5d3d095ae

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 168c774b6ce05bfa18aa84c22b66630789925fa4c79bdf1162969e6f3fd563cf
MD5 055c3be77e79b36c2b80db3ed19f550a
BLAKE2b-256 a76d69ea68459066a6551b05166aafef221301da19ba47c73137c247d7e45b3e

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca61661d20e3c940168efcadf06c984e3ec7bb9e3fd5c45cf537b3efc2f417fb
MD5 ee6e66fe80b1e853f78d33c878fc664b
BLAKE2b-256 c3d0f676c2c549afc4e7bc3b2d2c1faf1b215e0b2a99c187f2fa334834b15e26

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94cacdd72787afa45ec0b42530cb2c336aa55e2a4477213ca9d51dd0ef37e88b
MD5 8be9f2a86ccf6267d66eb623e7140097
BLAKE2b-256 622d21ff732f0b6bc7f5673a619ce5521b361c4b48c6c4e300af025277b18711

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2560ab2ff924c8ccc3ea799756d930c94f65c39aea2965584b35eaec2930d404
MD5 f3f9b455dd8630e215d85a81a1c55450
BLAKE2b-256 25d90781df5befe8d7da86538ad609c576170bc029f2fd2d5c9066b11b12a24e

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1ee4fe433859d90581d46d8dc6780d8be4faadff4cb25fb6ece0082829f1569
MD5 3275ded7df58d8f4e07fa99ce0317893
BLAKE2b-256 2668794a53cd00b3f5799317176fec8d25103d4d8d997254bd3f062d7481f742

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c7168e79de353268874bef02f26c8cbcde36d5475a65ac36f1504de57ac7bb5
MD5 37bb0c96f906980fe73b600cbd86defb
BLAKE2b-256 f445b570d953efc0dd6c445052f1d11c150292ede95f78150a4fe940d0df73df

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd9c4cf9ee1a2b427608228a3d90991236792aa7d70080d3dd6b9fd4703d46a2
MD5 fc7273be86495e174987f691e0acfda3
BLAKE2b-256 515e8003396c990677c02fa8f9b13e3a9f70cbbbf3d90406b9e96752a6ca2e72

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 69c277048e443b32f513773b89ca366c2ca2ec474c4e09b18e7a17f902c583c3
MD5 5858b77f71a28a2e8649efffcd0dfc47
BLAKE2b-256 73f0380abcc9091e6ecdd487d10c4e59c9aaf572e927e49b004403c80b9a35e6

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 570f288f7cec0b6208c3076620beaa1e40a913f6644dd29049268b406df1f148
MD5 624dbf8592abfffa41e0880675fec7fd
BLAKE2b-256 41c501010e1e3d1e406ecb88ede847768b51e9362a5dcf016a0e742ef872402c

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 381f1c4d324c1cdaf735cd1bc19da8039043519dd38b9a93e88dfda753b5ed59
MD5 aa155bf512e84891ff920d8463563dc3
BLAKE2b-256 9c21e372fe3e27bb3c1deb60f38db8d221da10a27a707f08736b54b249cf2dcd

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fee82621d4e7b2183d841939b50879706ff05bcee9196ea9d94b9410d62bf1cd
MD5 a9f3752365fdbe7271e0f5530c59da33
BLAKE2b-256 d2f9f44beb9ce34680f6341125b34d3088576d5e66f39cb9b03bba0f7727d1be

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 39fbe58002b302dcc904f118a063a1d355b685d4cc4045031093b4d7b8ea1d0e
MD5 00a93743b415ca606cccc8de6bfefad0
BLAKE2b-256 59167b321ee8696f1d5cddee97be9caf2df273420b9bb6896b0aabac500dc51f

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a839dd6930e61783b8b282c8d52c1747aea0ff1fbb5458c07d7655b1eeffc278
MD5 646b2386a162756c06c6841805b0eb32
BLAKE2b-256 f5553c4fb7efc39de6b63757c2fc06839429e0b7020e44e7ee0d9081fac535d2

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 520f0ca184ec0770c9389156fe3a8d13f71c1cce349c7d687763930b5d043117
MD5 2405c1d440d0412fc4c32c34700ad71d
BLAKE2b-256 28ade400fd3b94ddd106aec94ebf99ac5d50e193e91916c9a16e448937e1c531

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca8829a6bd9f7081daf38735fb86bdcd18232932c810fa1fda10bb12e6127ca0
MD5 580e5a32dd22334d2306aa00d1fe46df
BLAKE2b-256 cb1d864297d94cfdc612988248fd9e450b692f74622e81a87a86008263a8fcad

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4469f704d4ab86b6cc4735d9919e74cbab8bb718e4cfd5ffd6d44558b56d954
MD5 44203828bb7d63ce2e5c2da7730c5dd4
BLAKE2b-256 b6fbcda28f76f8f973fbcb85e76e5798c8e66a5c373d791b976250e7a788003b

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03fca8904faaeb22cab1882da1a4041dc55183381ddcde3d808527185e6fbf07
MD5 53446705f1d8bb1a114c1673d49e33f0
BLAKE2b-256 daf00b9eaad69e8905fea8ea0b49de463a99a182fe39e262b199b48751fd8706

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 def123d402c72f595d23f7ee9792d7c7f452bf761402e7473810328a2d18ddce
MD5 fd4be14d54690e798fc6a28778ebbef9
BLAKE2b-256 6f1d1e7ed1ad3b1f19926a0821beadf9da5aed8a46a4be77164f2ad2f38ff84b

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3130eaef6d8333c83e102812519184b05bf66cc570f291196538372a0b46fc99
MD5 bcb8b842cedb7a2e79c8508bf0c194cc
BLAKE2b-256 76f4e79fb47a9b2bec09a7c1faff6f0c5cccefedb1cbc83b2294cfa6a98293db

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9831ead0a721cb9278f02fe4466c2d07984c54a90384d80fc38bb4b049462d35
MD5 31592a2f01afdf29f99826fcebe11d7d
BLAKE2b-256 20ab1fe7cc55b55d8fef4f57a68e57b5de64f1ff60929b166a5c7cf741ccf997

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a606cfebbc8a2231d66f99b5b8dbc2ec2e94e8f9a35a80e438ca85e5993898ba
MD5 bc612119c5c7f7d75b80e8d2be18730a
BLAKE2b-256 520017a5a2b734735fc3330cc7060fb3c6e08612ba292bc4f79c7bff287c8a86

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4b32580f6f09b31163f113568fa02a3c9443489ddc1914c7ee153e7665961ef6
MD5 61a4080aaf92ab2b13759e0a91aa176f
BLAKE2b-256 e0d76d7661ca16d20306e9d35ada2a4fff6614cc6a9adf2af163a2cfcaa04f04

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d9324099ee94bc76e7f7209bab77329dbc19a3ec490b8417ee2eae1c5aa028a
MD5 e2726504bffdf29914bdcab789394975
BLAKE2b-256 3d419329e3e2f81f50c19be1749fdf46267fb687825adab51457f61fae212cb3

See more details on using hashes here.

File details

Details for the file report_core-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for report_core-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c41a27c9a4cced038abaec090369d10d5fe21ec658de76044080cf9e5ab55c04
MD5 71b75564f5be31e21cc51d8ac3050a11
BLAKE2b-256 7d849081e3a4117bc3d1116fcdf4944399f155a5bdb3753fc387de44eeaea432

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