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.0.tar.gz (39.3 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.0-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.0-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.0-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.0-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

report_core-0.9.0-cp313-cp313-win32.whl (996.2 kB view details)

Uploaded CPython 3.13Windows x86

report_core-0.9.0-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.0-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

report_core-0.9.0-cp312-cp312-win32.whl (996.4 kB view details)

Uploaded CPython 3.12Windows x86

report_core-0.9.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

report_core-0.9.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for report_core-0.9.0.tar.gz
Algorithm Hash digest
SHA256 c1fa56fdc1d94d40775bef1d50fff7f101a8e6475de0926a76c426277e874eb6
MD5 bdefe1c135e0fdf4b1ce88d75f44956d
BLAKE2b-256 0b185f21c394d4721c1bfef04f4db1473d1d0e24def3209fccc5b92d717e1c9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 677fd8c908e6d24b7caaf9976a499db68d9f4a2caeecc55cf1cd11c5592cd65d
MD5 936ec65c0220cb1414a4022a03c77642
BLAKE2b-256 ea8168662575cd5aeda4f613a9a26f75c80f1ecb88967dddeb6f2e6e76c16b5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 116bc8d9aa38238a7941e96a4ef37478fc2e2292a96eaf76e0ebd3ddad4ba254
MD5 d90d10e6c1191fc3671d77b5d3562adb
BLAKE2b-256 fd5e751752992d38148bf96827933ee82f2824f21897ef7f05be73f178f207ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f457f49c7a325dbf7c695adf7b591c392c27ba282c33979f0e9ff526c82e9e78
MD5 c970bc6111a6a494432b8101f7c0d0dd
BLAKE2b-256 201a688ad82ea777a05005bc01f8621f355190a57078f0820de877df7ab764f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96f80b7af874cc31ab232b00982147aa67961b4dbbc6d898084d9a89ca909ae1
MD5 bdc8a874f554bcee519dc3912fde8dac
BLAKE2b-256 a526826a2206e879dd6f33dc6169c615ecc886f153298060643feeb434876512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dadf38edc2680a8a99246258da5df4731de3455162075245ccf74e8a90c603a0
MD5 2ba703edc1135008e99dafdac0436f6d
BLAKE2b-256 0833e38b6d2b7f88ea0dada9dac6c5fdff438350ae55de259732d5454ca884dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3f92ea4fe025f5f8468fb699a0d7e7eabe79a4b0098a014790e7105285c24f3
MD5 ca5c0e0ab0cfed6770b03a5b285ebb90
BLAKE2b-256 ec6fb314d6f0ef7bd6cd9647b7496675e9ffb97def17c481d1eeb69b370d9683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8506e890ae33576697bc6bfd5b7aa2e7bb93ca60f3333255024334f94142bdb9
MD5 8023dfc9e2f1128009222912859bc7a9
BLAKE2b-256 2a7cc95dee453ec31dc9f176b10354a026886db11d617a5dcf30e3db37aa9d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 534126b3b1893fb74beb3ebbf335ab793d51b36bbaac1efe0be85dfa27cc9b3b
MD5 0746968fa28820188eeebf998d3439ea
BLAKE2b-256 4d7fc9a24cc841f54e5e520ed60fc8b4ae3abc95bcee5f74958497af08a5689e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6e699257e7838ca65e1f49f0f96ab5afc52737699403d9100c3ea1881603b64b
MD5 6ea5e9000f639706bf3e5ab746b26a0b
BLAKE2b-256 9f64fbd1c3b64dbbaa68e5768eb1821c310c93b05802c232b1d1d54924d99b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ba5ec110532104364f4e356ab59c797cd0c243a3b50708acb57960608200b11
MD5 7796121cfcb21ce05c78195b14143038
BLAKE2b-256 eb1417d5890f4c86c4a37f910d5553604a8fa24598743a373f234fc1b1a1f16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dac889a3123fee69544a02e67914b11dc8f61e42c540289fbc5a5b5db4f42bec
MD5 b40ee615408b16556379d9654c5001aa
BLAKE2b-256 d50b7a64fc0b00a4a33f03e2ff0b8856639fc7ba8d5b86382d5ca324ed7e8e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a6e7854495e9c20f36e1df5668d910fdd1c8e2ed4ee6f9ee746ce5be1ab2fc4d
MD5 74746f31826c7661689c6dee7e7864c2
BLAKE2b-256 c2bac04e7673be61d7682998c79fa2f71e47e552e8950fc12d6761a12d4f4961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6074f33b0c751e460b67f2669b759686d0c2c4327b2990bd9453f73355fd3848
MD5 849db03c5f65091d5424555959f935ae
BLAKE2b-256 ed9d87ab48006db04a4b324a32d725f6b03dc59d924a9ebd6fcebd0d76ae725e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e7ff3a4a380385bcdba6b63ebf4b7cdcfd9a74fb8a7c46a5c590d5be1903dc7
MD5 c93b99ab444cec24759c9046f4a99e59
BLAKE2b-256 b643f9ce2613b68f2959b4e163c4875ae26cda5ea6a7d8cce5f9ed9f9d2f223f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8536fa74e249da57c72dc1fc01fb9c6b3b0fd2608965f06dd8efcc0108c0316e
MD5 ce6d30567b99aa08e7a938cdf67a379b
BLAKE2b-256 34df024a839bc2a8158dbafcd3669b5aadfb09dd63723c4a11fbff28e19d4840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15ed1d0e154a173e97b16f14135f4e4ca7d8a0082f14b6f7eceac0cfb8fb9b57
MD5 46c754efec370d46a65a12156947e050
BLAKE2b-256 62a20ee3a1c01beafeecae56f6f68fc80cee33634cc9f8348da62967af4e9901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8557cfa0fde33d51de3ae6dc9c7ac9cc236768de4772640a68366ee315a1cc5
MD5 3ac270fc43fe1cdea89be4dc7406717d
BLAKE2b-256 9596bc7747cc386429113c9fbbd6fe44af79b8c0e51ff9b57567ff4411d67ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f07a91bbd03f71726eb167bd5a3e826ee7e98a0f85d0791d7b57838a3619bd7
MD5 e8eff609ab672412fd6dd0ae7b8a8502
BLAKE2b-256 8251fcae22ebeb40730ed62fb2002a892420b1875103a7d5bb0bad06a190f16b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8453a46d17cf43439bfd4155a6d6205a4df17048d0f3ae37a2ea0311f998be08
MD5 882f8d7af3f98cddbfddd4ad59671903
BLAKE2b-256 ef40441223e01c3c25067c446a1be9ef7ff7cd32d7a3ceaaea69205bcadfb72f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c4ff6ac8f7aa8efafc56690f2177a4e8cbb43501e752f5718ef48651f620e86
MD5 9a65c9d06816b2c2e26d68dc73eb343c
BLAKE2b-256 ef8c377a39736986ee63bc3284734cecb78ea09d54d9f04a4675346ee438f148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54774c77090f2d576895ceaf71ae6ae47aac019711f9b5f66a5f4693026e5fca
MD5 300fdfa9aaee7d518a0c8e0f6490224d
BLAKE2b-256 8bb9a7c74de00cc1144bdbb2172acc8af97b00902dcb6f5db228c326afe82c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5641dc7f9d3d0c3a8e5652a58ea0f7828d28fba0c28252eb999658c07407e038
MD5 08d553e5d274f1ee8cb083a476227cb6
BLAKE2b-256 76d49a8293db2729fed42643020ce0886ccc60d976348728d4c064446dcc713d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f05a1832163c5ef80487a02c354fbc6cb34afa1e62872cd96eb05bd26156c243
MD5 ad3174279ceac9df4ac0e2bf3f076985
BLAKE2b-256 5756aeca3adbcb0abdd4deab96a0be9540ff011aab7dd1442c441931880f895a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7eb5609fe474f192d227c813c4cad8f3115f05f9262a6f259387600b785f9ce2
MD5 326faad5e4adc7e833ff6a59eac9c69a
BLAKE2b-256 e59f095d8561f78e36c10e7cf85203a1cd8e3bd957054d41fdc706c826c73697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4f5221d86c513f03737c452c41818baf74eda09201e4890ae0dcbd68f85e3e1
MD5 b7e93e4397153267b2865a753fc7d094
BLAKE2b-256 cf31467e73705f5a7662e36c1712e004e9838ae1d627bce10be453bdad504524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6651fb933b00c7ec5ce89f83632c4c3033620cc747ea35aee620142b517f9277
MD5 655eb3d50f8dce48b1b65001ab14b9c8
BLAKE2b-256 841a40604b0029cc3e8c4aee4cb4296b4f994e00ab08cefd423cd4903469b7f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b859b9657cfca81fc0e4345c57ea05c5306da08e59ca88bea1f3e5ef28ffd894
MD5 b081f7c3d44da101f80eac369b9c7178
BLAKE2b-256 08d513aace0f1014b1757d4105114b71315223643375fe28362a5cb4f73c052d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3beda743e87bb6bb68364bc58ff1646cc06c1660113699f04851d1b86e344ebb
MD5 30a088983af74ebe059eb56cbd7b0b92
BLAKE2b-256 b9e9f6704895031ca076aa1f5e78bfb19b6c5fea4b962a6248e96ce7e36e2e86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6241bff60720724234d813fe896230da1f5cf4940937dd75e50c165852eaf5ab
MD5 3b4deea0c2a9e8791134fe4545119ed7
BLAKE2b-256 617db26e9abbeb33480cb36c948a2d77a009d5d4e35cfaaa1571dff770d1504b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5760ee60646e9a026da995b2cab0c86a62dd33a2103ef22194a14392523b2049
MD5 372ed64d43b9728132f3e777f246ebc0
BLAKE2b-256 6fc3f4b63752e5ef2ae379cd40c1ff87b04db35e8a3800330cc624d4228cde31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85f6acf2130634e87bea24aee94d82487c093ab527df7314ff4d57e805701bf3
MD5 c9e2b8df3ff416e32c9a6f825d0813fe
BLAKE2b-256 077f33e00c04f7fba8c3edd2bdcac600647a749a28be27c15ec31bceea1b09f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70e65b9b0cba03041c8a60b07561db03fc2c976d591e27512e3f9262ce7bf3c1
MD5 5a6924ec06a94caf74d4ff88e5d305d6
BLAKE2b-256 2a3b417b30aea77b1fcf198f6b7a5ed058daab83a87cd8d081f047816b805068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d6f3783c41b6efeb786c812aa139b7f4899d6e5b25854567354c1d2b43ed0fb
MD5 97225bdf033337e1d36ecd560c4b6286
BLAKE2b-256 85c6d909d4d064ef18fc62cfdde8a3dd62b96de293bd94c40405622e20efc253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63cfc8ad8b7fcbd23a796bb9dc4a70889830512d51c0327c77e35018ee23141a
MD5 8d45ae2e4ffe92b71fcd6f615e576ed7
BLAKE2b-256 99990afbc53f06733c8aa600dd46c76809279e8643f10fdade85334a74f4e711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebc57eb271ec49d4c68cdc8d2619b037b0cad81cd7fceab0f13b47cea7e7e289
MD5 e1529ce8adef23c4bffb65b21758e6ef
BLAKE2b-256 18fb256f5237beae0e494f5160a60ded36324ec7c3dd2b9f896cebe4e3899570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 58b8ad5a78769967deaca0690ef6fd10a078e157d5086fbaca3677421b5925d6
MD5 5cf5ebcb5a66001374b56c6fea015c32
BLAKE2b-256 a224032b3cb42485363ac7f528175fd9101b3c6a23e799ddd6ca9b762e3266fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b297651c84ade2d385ce479b2d55edb970c1d6911256ee24a8c86d413ec689dc
MD5 d27f58d4dfe16f471cdc1afbda629f61
BLAKE2b-256 2f17cbad82eb18760045121f5b91d15c529c03179bc7fd0a3297d899fbec1973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 55f6e2b2edbdda92f60cda88d3cb8eddfa2b407067015b2845a7d650ed945e14
MD5 a25540c52eca3f8e9c5f61b89ad90a86
BLAKE2b-256 0633871e423a936ffc3f0019c45eb71fe0685df0686725e73b294e4d07e64a8c

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