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.1.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.1-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.1-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.1-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.1-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

report_core-0.9.1-cp313-cp313-win32.whl (996.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

report_core-0.9.1-cp312-cp312-win32.whl (996.5 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

report_core-0.9.1-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.1.tar.gz.

File metadata

  • Download URL: report_core-0.9.1.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.1.tar.gz
Algorithm Hash digest
SHA256 8b9a32e8c3fe25ae50de36f3c53e8ae9c2e6682ab0f2c6ba2656182a6902efe1
MD5 91e607aa32b27ab02c4aaca37a0050f8
BLAKE2b-256 ed072e22eb5ad315308dbe6a50e15363106dba17565c76ab3b0468545d9abd9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8df9c6bf5c971024def4f2c6f79cfc9a540ccc5098687d1d0d5f76e50120f18e
MD5 52e98c26f62597750fa205e6f0b526db
BLAKE2b-256 7dee8957e717bd92be4cd5d314911713ad52efb8e9e2d7a514e9dc2616c6a885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6c93d9f0e47077c0d90bbf9a4b7fa4db78569bcfcf7845c534ff21c6dddb79e3
MD5 927d0ee3aaa0eb243a251bd7041285c5
BLAKE2b-256 e6bfc75f4e0fca9902d98ea68b1c70bd931898e2455909b03ab1a73c013e43d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84e109caa8bb5acb9b61cfb5645eee7945798708b0e7125d0e71f138c0a59e36
MD5 488ca69904524aa4224ac06e6ed292a7
BLAKE2b-256 54d31380f2cb5d5ae2e930f016f6b80cca75ca9809301b95ee39c99d422f84b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c06c2dc58bd439a036ab6882924cda387c942e433fd21e41d3ff306cab022484
MD5 f29c56c2615267500f2ed46749f2e50c
BLAKE2b-256 df52900aa882372406392e1b2a3af5490856ba65f42bfdbc5d826c51b2f4a4b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a2c3a2d445512e93569ee113bc14dd66aaecf9d106e5a81aab570b4af7e7e685
MD5 4e433bc93315b403cedad60715246a2a
BLAKE2b-256 26e42cf3a424af3ddb93f8e1cde8a256430d82693ff9014fc9326053172a2735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb12f12464121ccb8eb15493e091fc7fbea0677f601650a244be9d66ae8043b4
MD5 7f3185744830383c679c333086e0d527
BLAKE2b-256 5026b9d4cb6667ff5cc3a1837d8e013b28e807ec6f013f1f34585471e2bb7b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18d481bf7eed0dc66c796b9d43be7aca732efe2c4a09c49ec371b9e3948f9079
MD5 eae32e910b632e91a172ea3aaa987519
BLAKE2b-256 c6aec7d2740f3aec52370908c820c2767cdfd8ed0e2d0ff77ccb51c5d2a7875a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72e6bd82efc0a899423c5e5d629d6ec93f98ae41bdb72a7d2eaf9eae81b0dc86
MD5 65629d1d15f29e0db46d97cedf4c91e0
BLAKE2b-256 4c767ef490a5a30fbe789f4dd3e348e3dced485b56446ce4e62bc3fa7bc6a6f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cb03eceb664d2f09eb2883e332a2922a4a18f8956a40923a8482919444f749f
MD5 af552d1bf7176f380e172a76913625d3
BLAKE2b-256 1efa4050a77ce5bc4b3704a6d6a5e9e7b0ae6663bb938453e6f03567090e7582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41bdd584f3e28c2d269d66cf976eb028cee166b0d8007059c0cd62fed2a80095
MD5 638bcff831583b34dda3900d8f14183d
BLAKE2b-256 e14cb69fc263f6a149fcc44953c31a8abdad5b56d78d8ee9d22f7c68d308623c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9f8b9b071fd5c9a0aaf6a8283e1ab9ad3892a7bf2d4bb171e113f60ddacc9e09
MD5 fba85001965465fb6916a24f8e379f21
BLAKE2b-256 9d1478ead70512019b055817a7f1308875cbbf876e35ad8981e3e87d1ad62f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a84994a015b819c061617f7329d001678ffcb34619dc57490c11bc227e3fb0a3
MD5 3b8f962c4e89447931e05b4616d61399
BLAKE2b-256 b5214c79eaa9d71b6cf6cfe4df5e6553e04a4fd17a550ccfc8d24ca588a96041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1187508309c8f62eb1f0a37b3fa50024e99f40bf5fabd8860af36fba0eeb38e
MD5 c17113b120e1ec1afbfaa6f6cec2d5d7
BLAKE2b-256 e18717a642a43abfba32c686d760ced14350998c78692343d3f440fbff9b5944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8480614468752810f8f0018a2fd985cb9527a98b5a3f25758634ffe5e87f2fdb
MD5 a7c26e3145882ae3cc295c850de2985f
BLAKE2b-256 44efad4cd03412d423d1de01386cbb54a6afd4d183f849b1784c28e7d10b0c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 341cd56179be3c50efe922759a9a9dce9ed5b10d46fd18d480eeb2d91905545e
MD5 88946216dd6ab07e118aab4b6f8b28df
BLAKE2b-256 8c6e32356f0417bac30e6ac8d18b139bc1129c2bab539e8828651dccd91979a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81f00565dff00d96dfdac2763650756d26f02e55fc3e9174dd1809c66c51d948
MD5 b2ad44d33c96c38c66c950a4b9817362
BLAKE2b-256 e7882c6541c8ce4150a8ac176799538283c0d77ffad8418c2e44542fd4ecebbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6a3ecbd26ad92d8dd18cfb9e2de8243ab7c08588f42569cd75f6f7c8172c963
MD5 fe289ebe144d2442ad4e7699d56631d3
BLAKE2b-256 7907015b7d3d1fcd42864c39c931c9686aacfea372dfe6fed31f6232afc8ddec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04f0ef8ff9d8bb6947b6541a641752695257e06ba09e1b7966c6e8a6921a7da1
MD5 4681ec08a49109332a6c02f718fbde47
BLAKE2b-256 99670a3e3a6966880cb3684f356999262cb1b9df8e3226ba75d3082a3999cd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb0419f70f49ad8f2801af9bafb097b9fbd95d1d50ad6064f1d255457f01e9d7
MD5 940595ec7f4bdd8078ac13d6c284be07
BLAKE2b-256 610549bce207fb8b86927f62e718585f37a4b0b45ec53f43072083d6baa76162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35cc76108b25edf4a4c6e659d0bf81309d15b443fc44b34f7f667049b45ace9b
MD5 7017dcb3cfa9d75b535d80b4281a9de1
BLAKE2b-256 8e08302676225d1696b36756d0b84992c252e24b958e1689a1eff12630faabd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9657ccbbc0ad5898aa9e3a05d5f49cc93efa6547ee72309a943d346fdd84488
MD5 03adbf7bed5fa3b08af0f5f4ae62180e
BLAKE2b-256 3764df2ff7792df8c43441583e42052f5c756a822cc86915f81a760f1b374f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 08cdfc898c38cbe9e011b5c199cc9916c6995a339d248dd1c65b731fbdde0071
MD5 6b2d0b023fd5b6d3898c02ff76c3c698
BLAKE2b-256 c6cd9da778c2cb00ef82661cbfc6bad92ecb78f4f85ccbcf5be5436c1c79b400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5805589aa35d72e5ae7918bea62d5f4990ae01fde27cc8859da8094063020da
MD5 b61fc33972da23ee06333924215e15b6
BLAKE2b-256 00b2873dfe2fb03f8d2c3ce5c51cd0b2f2329ea2acd9ce852358faa8409b68c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7630b2a15c815935997f1a74028879da956b22f5be9facc6cf152d52a3b3d8d8
MD5 fa41c88f9819eb7f4712d4e44ce6c23a
BLAKE2b-256 2ab78fcdf98c16c1a3b354437c14b5b5981178633350a5a06c6f739840f9fe5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9e6148d27dde065400ace4a252d6ed2e2e5b5fce90b198b6e9ccda1362648a67
MD5 48294ad8a6b4aa85f5bcd162291c0a9d
BLAKE2b-256 ac44335895373f82bfa243fb6a5b9568b53aa6d26c397641e9f6406bf65dc06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b0f7fbd013f49115b64e7f1f915dfa4d114b1e4e965658e017ff5c333d56a5e3
MD5 6ba832cc7958397db6b3d222960d373a
BLAKE2b-256 ea2d8b71ca9e573ed59233d287d5b8dbf14299e7dec2d9c6d409ab9c284e76be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5de24064d37d3f70fedc3118be4e541ac2ec79c948d30bf68bd5d77a0a6c859
MD5 5a5eaf5c501870b7f632074b84a402b9
BLAKE2b-256 d0854de491146211c3b1d0dcbe2bf39781e229a5bd255e2676cc6e6a38c0bb1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef66308da31fc1144914eacde3f92346a877e10c6c08761be8b17c965d6cd953
MD5 8c2faa71b9cdf4d0eb3ed96119e3f12d
BLAKE2b-256 a93de3966a7985b005d194a37441dab63082db32e3fdbbf8583c4578f4fa17fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e49cb178f8363eb6999702e638ed3b07f2bf7ed8515e7fff7bf01a22f2c06d1
MD5 80d58cea14c74a1c0a5c9cbac2838785
BLAKE2b-256 a96f020c27ad48e680c4ea3448f4a85dd79687092acff881f38711b26c620d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 168c8cc2ee28ec38132e19ecb491f58033e5957fd156ab2e8720d6b058308ad3
MD5 d3fe49186b12e2534e515ab1a0c6e331
BLAKE2b-256 9237f6ea581366a4c3c0618ddc60b8ee343436b2c771dd272deb27c1356c2267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ee558f8b76f71c8d16e9391b7cd0791a43a7d49fd684495eb417a529d6c2f6a
MD5 a95f4cb768ee2513cba9abf389503359
BLAKE2b-256 7fc89bbdf6939d0adc90703fa8ca930588d9772849515d8ede5d9e5ddf93410d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b36fbc1e207061ec34f007b4ef6213f91ab74101919a77f32f99873d42c9bf0
MD5 7cb70d72ba19a0afe82d6e81946f5bec
BLAKE2b-256 27619ed16e8d4052f677c31aba1884e6d6da160fff2235a26bb33a6543f1e09e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dda5513d8a1ac340c7df2173498d21ad52f71f05e1a0adf4a2c58a44a376b271
MD5 0774987e1f927b0966bfe1bd06cb4270
BLAKE2b-256 a10154c79d726b71ce681897a17b5b34c02267855b6ef1ba05e4f32478b2f6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d7581c6c8ac67e5742f5c15c480a915ee3a86f9ecded7f0b3443a744d20f29f
MD5 c61ec627e1fc478e6f085298457ff07c
BLAKE2b-256 6b8471f8b2fd27a2e3ab0f77461b722f1e72b9196ec8f7f50ee0ebd8f482a72f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e11986aef4961083502ea91bd0d25cb964f76eb254b6b5833a8260bbf9ed29b7
MD5 305c583247b35328dfed84c6ed6afa39
BLAKE2b-256 87b5b8141a8e01a7869cc85f1d865c42274b8237f7d835643347395d75986d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18d7d7917b9baff8905493418573017ec2486c49e8ccf424ded2334687b94f8d
MD5 d8653f83b50c33aa6c372dcc3aefe28a
BLAKE2b-256 ef1b41b72061a84b8ae024b8fd5d81756f04169a756bcff29debc5d07297e330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40434a41a225684b1d045416d982bd0e9b5534be1cba9c6f4085d192c5e95653
MD5 649d3f785dbcb380e76ab845dcbd4e47
BLAKE2b-256 b13df5ec23001cf95498101c83db4d3ea26236e1bc805384246e3fcfbf6e5885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e57b3c2cea83109f396bd7ef00bfe0ed870a76281ee90a3209cd96552af76144
MD5 b1c9463b4e6d3ee09cc8990e97c73e84
BLAKE2b-256 65265fa88a043522563ca6afeb538bc8a7a2f0c51da3418d062d476c6dd16034

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