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 для чтения существующих ячеек отчета.
    • 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("uow")
    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.7.2.tar.gz (38.6 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.7.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.7.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.7.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.7.2-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

report_core-0.7.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.7.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.7.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.7.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.7.2-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

report_core-0.7.2-cp313-cp313-win32.whl (993.9 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

report_core-0.7.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.7.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.7.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.7.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.7.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.7.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.7.2-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

report_core-0.7.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.7.2-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

report_core-0.7.2-cp312-cp312-win32.whl (994.4 kB view details)

Uploaded CPython 3.12Windows x86

report_core-0.7.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

report_core-0.7.2-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

report_core-0.7.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.7.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.7.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.7.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.7.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.7.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.7.2-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

report_core-0.7.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.7.2.tar.gz.

File metadata

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

File hashes

Hashes for report_core-0.7.2.tar.gz
Algorithm Hash digest
SHA256 988fec9c4767dc6d226f2e48815b80d79b7ce29078921687b02ded6253f9dece
MD5 3dc3bc5da96a90b2577c2296e8549051
BLAKE2b-256 99f7f89cef06ccc0098ca3d22a8a0de4645a20e879f1ffa26bcb5b5fca6369dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d655871838c9ba6c4624c704cdd7e9519e966a27fd03e0e2e0e51378753e66ef
MD5 9d8c23dbbd6e0a5042c3814be2454337
BLAKE2b-256 bfecc0f4b4ba2767bf680255424825c19c9d193baa5d70c7a9769f29ffc4aaa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d36a5fdd50a04bea5f70eb90f4369b766669d9e01e26e9494e198296d63e5810
MD5 7ddf0a09b461b0b536f5f175bcb32c79
BLAKE2b-256 a34f56c0949fa5cea368d9e7d92209c9465ebeb34838ffef90fabbce71e79218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdba02cab5a9867abc429395aa9680c8db3f68dfa2367ae81111426991899dcb
MD5 2a0cbba73aba3c7a5bade26f130ae731
BLAKE2b-256 101e21e104e8ce9a22a74bec6a5735da0d464c6900c7513197043b35b8de1eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9ff46bfe4f07548c66c40fc68a170bd21159eb0256ab8f7fff9a9ca55bc62d2
MD5 ae38ff8a9ec3b32d9120b3d078b3b03d
BLAKE2b-256 2c9a05a2a17c9edff60ac38447e36cefb653b19f3409a030e5aa782361c556c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 570a7b68e76a3032f99519e167d3e21b44cb7d8f9f96a8895da9270c40520602
MD5 780caec0776d6e8a812f7e16e5b5799e
BLAKE2b-256 490c94ede5b375495143bee370b18cbdfb10913c30d308db541740580f04445e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9307d33787f4e47ac6755abf04a6bd5bae27a9ec69d1bc1dbea1a0b4bbc8bfa6
MD5 552ada9fa0fc2bc91bcf04e2b918f95b
BLAKE2b-256 4a05beed26bc4599b6938a14ab31a37485db3a6c05dedb6b4b7a1c2ef89fb1bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5a5ec8903c7920ada5f69a7006251f458ed32a6f5250f5cfdbbc31c5fc00af1
MD5 08e3b5f562342dbe3308219eeb1c843f
BLAKE2b-256 38d68e491f6ed16c5d886dcdc9213a92c38d68f22d116cc6dbb30429c2ce8095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ed8ed8a5ccc0ffb784cd9d54a9602e670be62c0bcfcf35dc65eaed5552725bc
MD5 d3a08d88cfb6b118a1b7a328cbb76fa1
BLAKE2b-256 56fad057c30e1be75e6d877e36c09289601ac573877539a0ae281e8c5e7142eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7783381ae3138921c816b9b78fb0f838ed3cd05ed2d33abd79e3943c5a976a8e
MD5 413776ce7bd7587b9813a3e1774f2555
BLAKE2b-256 33a1d3930857ff7866c9ad04395a54593074c26cde1a222d113da1789da0b67d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 185d0f1f151f93171cb74ab2f7e39ab39e6fa641d1cbcdeb63f03599e21772c5
MD5 355e72223c3e97fa07669e1173f53648
BLAKE2b-256 e76264bb1c11e5fb432300557998f2ed6c87a4b4f1efc2068da1681314acce5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d34d4c9689a5e3e6393c0785f55fa64d0fdc6ee20047b9dc8018ffd7d5a0fdae
MD5 bc626122fa355bbf449ff085a84a60e7
BLAKE2b-256 a7f43c05b54bc65481509688f5975f322fb8b833a6f84a80f34cd7bf5b6f852b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6153d581dfd19966514e13fc9539c1b6ed9bdb5684ab56660324895a3f612022
MD5 428d2ced03e3370e62b139d343bfc8d5
BLAKE2b-256 532bb3e724463a0615f47399616a557ba3d300d800d13fa8055525fb2e8f47c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10625e583b72b9d9886c65a6cd411199199cb23d6519deaa24fbbdffc286861b
MD5 9c5cb7c7b6da88eaab978b83984439fb
BLAKE2b-256 3f8c18b04fea048e25d450a51ba41a0c8e11037ffd99fa2b2a2acef62868da06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c572a59b6b239344edbc3c30a60fa1ef557d563c6a1878b7e7aac9859e87ff5
MD5 2445aba05c6e121e6a74b6bf8b2306bb
BLAKE2b-256 f059feac8058eb76b7bf199e08f11d4be274a19af109b40e02721f85a25e516e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 373ef02cd0339689b027e4b3b3ee3d978f47a0f1dc9f9a6508d09bd1e8a9718a
MD5 2bc36fb59efcddb1b600b9b05c77bb67
BLAKE2b-256 63b7c107af41159f05d92693ecf82795e9f47f183644b659f7798cd537097519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d207833b8e50ca4428099e9bd3d69c17f466dc7ee6129e165038586e877a916
MD5 bbeaae371963883cea85287169c63e47
BLAKE2b-256 a19b764879acb6365f2a82e6605a859ade004a6d2a9ab5085d8290d7e607f10f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 114ca854cf9fe3218c8fbd84c1cb33c9d91d1ebb0bd78378409be0869f2ec922
MD5 a3660788cb8bf96cead63c405e2e3355
BLAKE2b-256 12458453a9b661291b3271ebc23e950ad7e2537444da65abf1fb7243421286ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b233b4e39442b7ad2b024b04ed845a92fab6f7b7ad96a06d0c5afbf3510a6d8
MD5 e356eb39c10aa531482273d68a95ea51
BLAKE2b-256 c42f9512355af7daa080ff533a8fb25f10517d97466deccfddb4a2cd5ed189f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3839115350688d3f417c95364d541c9812a0d561390179f8e24f6058dd0e7c2
MD5 460568d8e81644434c8b132c7ed6451d
BLAKE2b-256 ec93c4061f77c87a07e3f41ef3fe6810bec01fd6f782443ba7eca6ff130af2ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89dd027a009ba632b3b7d1c94286cd30e9b4100151a8ce6627ebd1865f75dee0
MD5 6cc0b197920a05c35765f00e76f4c660
BLAKE2b-256 b6c97ceae0b5a9c1beddbd98587b2b207ea34e935b4906831771f3f6a2d1b3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16d323ed5be5cbacd588f58776b199c61d865272bdecabcc2de9534e6ac93d9a
MD5 8b9c9fe38ae3f1c17755e93b18f3fa5a
BLAKE2b-256 ac881203789571d0fd6eb7e6ada192828e0ce15e635699c6b01fbd1933799f69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 91c20f59d855855d763749528a70e1af4fdbf2328f29998fcc4d563cca544e55
MD5 7c4b5c175be5f76806ae42fb4be25810
BLAKE2b-256 7b8d09b5825a2fc337ceb8c639aae7069d9dbafc64543fb6932885b556a0167d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5030a1a673f2ff310753113eb166e7b8e95e94f7a2ecb14002cdd15e032d86b
MD5 4f99bca84fa54bee905c6991f18560b1
BLAKE2b-256 abb9c08c72c70e952b67c8a04c4f11b70290e45d0592e517361305330f84783f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9574ee8f741c4cad102d72301bc1086cec2ebf5e0da8ab6c68f8c1d2db33a397
MD5 6fb38ba0170f402d7fd9ef474a8791a8
BLAKE2b-256 c904c502f13ed1d2b39ad9f8ab5d33b1429c34674123a7cdc6159c47f76a9b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 26ad5ed95ed47bb11f5cc9435b110dbd358bd4cdf6deb990f9a53c7ef8af66fe
MD5 d4054141c0086e4251711d7ca93bf1c5
BLAKE2b-256 7b2ccde875e9d1797a0d29309f8899f10365277425219722996ce2996717ae4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9724bfef300d41a65acfae4b303b4ad26be055736ab04d69f6bdcd49a1a42f88
MD5 5086b806f5da5cfed1ab707dec9232ee
BLAKE2b-256 370f47a97c1d5eccf806e194d0e33ab1d6673316cc766e58921523e65150e2ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f614ad57911f66460994b5a9eca4d05910b6bc7b3e8063ff42306d5658bfcea
MD5 101c112e32d6af17983b932e428589d1
BLAKE2b-256 4b3b2f4c3243636d01b9503317f32f41b7ed08b79c63535314d003c5a3b4e7af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c86539604a5ca06498c1afd13afc3ac4b6232d25e09425281870967fa0a13f3f
MD5 ece28999b175fca2cccbfd4a209eee85
BLAKE2b-256 39f259e042374666808402f223ccc0247fc4295ef8df486f037615ba68a3c29e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7482df017bc4b3d7714ac63f515192716ba13900fd0a372e735bb84eff258cdf
MD5 4502a0ca345d8263427e53f1976db926
BLAKE2b-256 391fdb8e5df9fb4a980ab4fb0438885b96aa1313b37fe457f813abe29dbb2f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80b5bf93f62555bb0cf6c22dee41076b989955e099ec74f0e17bff4ef73fa8b8
MD5 22e894d82e0927786c6459b80b853d77
BLAKE2b-256 c30140e99a7ec70d4f1dc4576c787d0e383038dc98ffa2f1bf73f766616ff0db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1b755445ac15d4970e97ae1968f140be65d2c7e4108129ebce7f5d5458a1fb2
MD5 3f608fc745afbc162fceafc69e6cfabf
BLAKE2b-256 9781b82db052323c5ce248a612f8c7824319bec5609f6da91b5478d49396dd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae5082369133e09b4ac71246a32cdce4496a2f3acbcd007f291aea78d1c43938
MD5 621ddd8176a7b3c1cf112924f25bc4d8
BLAKE2b-256 8298bc49b4da572f3b4fd4dd599d232e86085503693be24815eb4f5cc97fd3c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9493d0ee56372075f8f9eede8c7b3bbbcde97323b814a11c19b220dc89ddc98e
MD5 077c1e59d1b9d402c76edcc317598bdb
BLAKE2b-256 b11877c7498049e07a140af1d0dffdd4491f2198df4890bcd8bbbbdfcbd0e580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d5602444b2825a241c18d1ac07f93ec38bea35846dc2570802cda28e44fd6ba
MD5 b0f8969c2e4877adf5170ccb24fb826d
BLAKE2b-256 0f190ea84b64c8ce8f0e5087eedbbade5471761da6c6a8d04b0f0ae4d8a2e673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9b86c23523f42351fb32291670bd0e8019c2d1498e5d99075f4e08462a046cf
MD5 fcff2da90b65546ae4416b9b845087cf
BLAKE2b-256 30eb8230de055e94d11289c6b09e6e1314716fbad13a6f3717b46bf892c95676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 adaeacbdda6b83306c3d343342b7f9b56420f49a0737dadfec6c1bdfa7988f5d
MD5 47fda0915822762893954e471720f9eb
BLAKE2b-256 5af024f49b91163bc6df06d8cca26d9ad33006229f173349f961813fc13baaf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59280581adb13e00262f7a3c9c079a9d78e429fc37545442987a6374279eea6b
MD5 d67f357ea53035841deb71200f640e1f
BLAKE2b-256 1fae9cad195c4fe6123108ef35da39fdb13740ff280b7aaf29b84ee2e7192252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 154f7fb13d4f498c478905ddc59a334da6cecb411a8ce9202f1b89efed0b1cca
MD5 fd3573fb9e85ec687cccaa1328a6ff40
BLAKE2b-256 f9767e80a17a32fd5e36c462920ff776f0c0456cc861193af323cb5b855b7681

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