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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

report_core-0.10.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.10.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.10.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.10.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.10.0-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

report_core-0.10.0-cp313-cp313-win32.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

report_core-0.10.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.10.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.10.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.10.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.10.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.10.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.10.0-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

report_core-0.10.0-cp312-cp312-win32.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

report_core-0.10.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.10.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.10.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.10.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.10.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.10.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.10.0-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

report_core-0.10.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.10.0.tar.gz.

File metadata

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

File hashes

Hashes for report_core-0.10.0.tar.gz
Algorithm Hash digest
SHA256 2b3917d8147a937b98593c0924b6bb409096a5bfe680fb3ded6a93e1b63e3fac
MD5 9c9c6a4b3907695122e32989d9260a2c
BLAKE2b-256 15f15b9ded52903b05c64ca7496dbb2020e30cca504e942086ad7023162b1400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9125eedc8525fff0e3e9e00d99034d51d366f68e13e205121228e091acfbea22
MD5 1b1a4888abb27cd9a20c00395aaa2438
BLAKE2b-256 6f79e969916e83be0d0c49769a44ab8e32aca8d9ab4725b25b66ee48371a53fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c596934ebdd9acb16f01658de804b5d2d53f08dc3e6a69a6c9eca876a8b69d26
MD5 e62956054f9bf489e2fbfa4745958315
BLAKE2b-256 ea6457f4f7be521efe80728548d84f79965bff04e13b42d387745c20d68af76c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d0d515a7010c373b471b2fb9c7784ac069d0d2c50878a50a10ec5a5cc995be3
MD5 41aa52f7c12d7f56d91e86f714ca3d63
BLAKE2b-256 c24f19032c1902130f24291b8ef25d03c28ad992907cee2dcfb2582a0f48e307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 809b19bb63fa165f2792827d5adbb656456d0d02d07f1dfd4c76c22ce5566e45
MD5 d585e32f13f326353cd4b2108fe31842
BLAKE2b-256 57ee3c96b4849cd7f90847d4d85f592133a4488efa920b38a75fac534f7ce3bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6720a085c87e2ec7fb603e8a7378fdd2d50633e9776eb1a2b7b4b7ad5843aa4
MD5 8bb6e8203e01c490f68672f9048b4984
BLAKE2b-256 8785f298a50115baa98af3570c496ecee425b1a8ea3c0161e4c1782dcbf80a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3d600f91aa2847f230efaeeb06441bc9b261642900faaecf55b9aff946f9fed
MD5 d6f0d91a153ee2a66ae63b6d8c3a7845
BLAKE2b-256 aece61a57aa6f7d59aa53912b80969a963af7d09900ea41dc5277dda78ac8ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ea5ca2d75b92517dca7880928330281be2a5b928191cf44537b7703389036dd
MD5 a76fd4a3e5c4d6e78000cd8a14871e32
BLAKE2b-256 fb319298886cbfd24631c126e7d74ed193f34d34d30d1c6b07d054937a11f34c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c36df2d15f683f1e7dea035862dd5314ed972a888c97ad5d90a79a5eea00fbd0
MD5 cb1fd487a997968e3070ef496c632a8a
BLAKE2b-256 62f57d40542f65f0c79a3aafa9f843686b8fdcc40a1a03f49737153032ca91e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f73f4fa211454514bdb07097206c8f006f624716a9d55f1e459b1d778eb99c57
MD5 a55c9c31e69cd889ab2926e5df098fb7
BLAKE2b-256 cb6b698b09534766a552dc71c4cebbde1e53694258621c18af9c1cf9842fbfe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc3457377dcdc3226f3e4bd6784132e24fb17d667f5ed2dcc17271de5f419e8f
MD5 e9b16053b570d99cf8d82c1f73deab49
BLAKE2b-256 f9b2e77191c52de382ec4e35b02c905f3ceda0c56fdcd26202f2c5d66dfb09e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 53d15784759a3171bd212a1224a1c394be3e6783432ade9fc7fd6caac9d96282
MD5 bf02f152a6c22bde98e0c6b0795fd78e
BLAKE2b-256 e10d5edf064228fb8fbb592706c54659aba7cf270035139d3fa188c52c926a83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cc412685ee4d928f03a832175c9f1aa9826420420ef599aad44cd0dfc8a6239d
MD5 fb880ba7c5559d0711d7df5fa4ba14d6
BLAKE2b-256 0ddc1c6e77da1a7e9555a0a638ff160e51e38b538971b6b03ffaa00d98838aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cec6d14ea105f3bf034afc6895951ff96ffd1aa442ea88ef8f8a31d710bea9fe
MD5 3cd9b370c5cf263b5600bf0f4be19ddb
BLAKE2b-256 f389fb0e9811d219d8352ad7799cac1715d1d52ffbb75e10d9db5b0edb9cde85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 163100286072a75f081df8d50e9f5dd53da51dcfe732e8f477cdeb654d049502
MD5 ad306d159ada1e4d4c34e3c3113b6d1f
BLAKE2b-256 f18e7cbddd486d76da54ee1b0b887e1472aaefbb23c248716c5f521b0f9aaef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7355140206d580b235eb59b2dba8fda4482d195ab2bf27a4766b949d7ade14b9
MD5 a0463677dc8e31022c8fff85923fb9ba
BLAKE2b-256 183893ae24c5ed5c1a65109e761b43bcc25ddee97680114611ad98a1fd38f0ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7379350bec14fa0ee8f32fe6982f3b933b5c7440697fe25c4191229a49432574
MD5 ff08a3cb1f31358730b749a7928c4e71
BLAKE2b-256 1e3fad79b95919de2c03b439c9808b64bfb4924c5746357e570e63546281aad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b963456e2cada463ca5d7d624c5973396bfe03a828543264411db38618c6b76
MD5 6646c9153df769e4f5848ba49184cc2b
BLAKE2b-256 df4b460e53186c291d45626b5ad8b7b3597b04038ffd351c3549af8cdaef7cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc911169b1d3a4d5d2ae39b9e0421dba38562ffed8d8c30531910f33c094caf3
MD5 739130b3c49d9d516d2614f8919de33d
BLAKE2b-256 e5f1994a6ca1724dd359a107a6cc2c0bc03f062d71f5d29f65d2467ed09dff84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b66fb414f670d8b6f297248a2da224ab4bf75ad689df4b4b0431d27abd710d1
MD5 eab8ff106a2e089b9c309fadfd5d91d2
BLAKE2b-256 e50c61295e3bef8ea3bba7a75725116518e5e43d028bdf39389301246fa3b6d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c93455f6718e42e63f4751da8d2d8c757763e34c5ad1182da628fc8712c70d5
MD5 f52c1bdbc61eb330e6b9be7d5ba8236c
BLAKE2b-256 9a63e77de62b1aaaeb817d5746bb3fec9393385ceac4b164a409720e19428daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9c69fbb0b8f30a9d4eb0bfae9d29c6c55655e79d5ed01bf68746f2f1797f126
MD5 d49d800aa0e4f36daf1af85f001a13fd
BLAKE2b-256 0a98adf457e3b6a2f464e898e0e9cc6b200fb19d773681984557c2c229750036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 559c40cd7921e394987b402e307ba1497a8826c7d6ebf0e96e909b14d229f7ec
MD5 f54b54c2ea07f580eade5998bcb00b6a
BLAKE2b-256 2e170b0d313afadcc4ee9f2f02ae3f2489fe923615fe7039c9e1abcf6966fda4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 190870440af3e091f3aacfc0833ec23c4a8e9fc049c9b7ee9b3b6e39d4263f5d
MD5 240f88822ca9ef6a06c0ff873cffdb89
BLAKE2b-256 2ffe919b1757af2d75a9e771566f2ff263c284437f60c144f9bf47d918320be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4429d659c8b186b589648d7019c20ba2df8d790928c77746506818222929dbad
MD5 0566b475f73d22bc395ef083ab5fcfff
BLAKE2b-256 7e2b967856fa5d48224b67fba39a87c687ab746bc24b2316dd3ca60a03e0824d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 464ae3fbc35b832ba5e3b79ccc3d488cb60af2ebe1774b9535bb6f19496cb298
MD5 63e86ebd7e7176db1c53662bddb170db
BLAKE2b-256 65625afa49c596ca6b6928add20e2bd51ecc1458337ddc495cade3bbd2b3d2c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7e6631de32c4b062c0159bd21e0d50a6a71cbc3c7262b00e96efcb7a16f3228b
MD5 4fe354fb77e5c2d6b1304422f14d9238
BLAKE2b-256 257400237a5ec31887956661c7320414846f3157a0e9eb1ad989e1188108aeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6db4b6e1099ce5ceddcb5778ef396a18aceebc235a16680da616d70dc9c54b67
MD5 677df7f2c122af128e6ad7d7f64514b6
BLAKE2b-256 1ad6ca1bdc584f6bae4e3d832d9aa819aaba34a0b11149bff673181c39215847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef679778d14644ab592ddefc23d718609239c4236f89fa72c2b138d56a2668c9
MD5 059b268b64d9e20177cede50c57a3e7e
BLAKE2b-256 82b0ba4bd88310511bff9c6589fab95e489ca37715e81d97759e038cbe82b4c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be03061decbe1f81db13bc1449e908858fc5033d119686b011787f42ebbcd65c
MD5 9828cb040115609af7e3bd1fbc58c8f8
BLAKE2b-256 e1e72a3f1035226a2587a6f37f880378aa36a5a50b74c6a6007b63fd2d1e6a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30b776e62fcec076ff1577f770241313491ba67577ba6debca1f3c99eee06a7b
MD5 36f7dc624252a8221a6d7f0a07cb0e14
BLAKE2b-256 ff305df3ecdcefe4a417b2c1f0b84acab4b29891468d202fee6a9064e0e61d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29116941d738f7abb6d17b4b874974e823aa16dedb278b17092438d20f0a3caa
MD5 cbaccbbb7f36fc9b93ed93f955adfd76
BLAKE2b-256 a6174155d35e71386dbce6a478deea290261b3fca79dba0c703ac152ca6bf72f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d65e306b0ac26bc0afd317492f865a3365893b7eeef3f7e0d952816534bccbae
MD5 09b8ea60763df13a805f497433e775fd
BLAKE2b-256 5911370e23beff21c78bbcefccab11e9562eb186a669ed40a4a5d18f9480fb8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c70e2472e1f2c000558331c35d112b8744dd5dbd022f5c60fc43aa45bfd3e127
MD5 0304f21e6baa2d51e2bbcd5d38b1dcd7
BLAKE2b-256 8f8f08371d8b68d89249d51413faab2801856f2ffb8a665eca280574acfd5faa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c17e9d24c531610a51ab35ea8dcf0dc42c18f7de173fd17312b6504b8176bbdd
MD5 ddc9167f276b19bf4509ed3b4226ec42
BLAKE2b-256 b93f1430b566b42f99ab6038c764bce6ea360cb6010b01e24a88b806a607b070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8beee53b598998ea574a4295d0bb5293a4aea83df1470a492584dd5b0e1d426
MD5 9bcdb92d02b7e3db7bedfcbc3d1b9a82
BLAKE2b-256 ca88439a5f853f3ade6c6863a1e2ebc84bf1adc44ca3463f8b33920cc3a4531d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3d452601a269478640deca3d96aab4841ccf13b16b63c549708212d5443bee55
MD5 958be310273023f1b37286a958bf2efc
BLAKE2b-256 2e46841235f384198df4f217ab55b5e8c16c84dd6db34fcc7d1762594fa74983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46c2bcab357b0fb536871fc2a0b9bec2e3b41c39ee3c6710f5097ba821894381
MD5 7fc4350bcc71f759564772b97a95c6f6
BLAKE2b-256 b997fa99a6fb6888727ff6f552889ba5e2eb0de4982baeeeb04c14fd03b4003a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33059fcbe04f862a1cfeecfa664e118dc6f274e6cc28ef3174023c3ab0e7b93a
MD5 92483899f38120d831af56268d8ddc55
BLAKE2b-256 386a3039c7e987a2c75f6d9f24774fe835426fd2015dd19631afbdc741b12fd0

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