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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

report_core-0.9.4-cp313-cp313-win32.whl (997.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

report_core-0.9.4-cp312-cp312-win32.whl (997.9 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

report_core-0.9.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for report_core-0.9.4.tar.gz
Algorithm Hash digest
SHA256 37bffe484daa51cddd43aef4060fba913b683434325d4d81d1c0be99018d19f6
MD5 1775f867f8c404ae0e4781b332871f6c
BLAKE2b-256 74fbfa38b59b8ce07a02004ef010e24778a42f80d137e8d94761059d9fea4920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00c8ce93a400dc9a6eb0550fff5b9790d54a2f0145f6603c9c60614947eaf030
MD5 3277d326fa7f9dff48547013a0b553a8
BLAKE2b-256 5a15c834705a0bf92290b6358b53f1fee90fac2da39b24d32c29edb95b04524c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5f6d7b2f7ddc920377eb4b4493a6341ec0aa591711e6f7be853f471260a1faaf
MD5 1e83a2104143ea348ccd35db88264ca9
BLAKE2b-256 2aec71be35e721ba0a52a4f2a75f9978758c538b412cf9a642364dfdd85ef74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 751e3ad573cfa47a8bfef612cabf460a8daf66cf6c85c5cb80249a7d93251de1
MD5 4d1b413be8167451cf2a89b62c5fa50c
BLAKE2b-256 06777d93058072dba0c0606df4abf67b1cbf374d10f56fc581e0ec995ca22749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f7624b8b7e28185411f8e89e00ec3c665598fa0d6e98658024aee1ee676fc95
MD5 3afb5fe5e95e7b742ca8f0e47ce97dcc
BLAKE2b-256 2562640d90004ce9fb8e27e17c279a4abfa7c0cd9f39c73dc54e74b10681fb6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b957f5f172c4051937a57fc01a760d5c6e3bd97c72f2b4b3779f89407728b985
MD5 b467dcab11decc9fbb4949443fd977ba
BLAKE2b-256 2dc97fe998fec5db3fd3f5b77a681d8459fb8c786b112bbf062064192696ad08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f09bd46ba71c0e68825ffd01e9f2d0d2a0b463a23140592500098a732dc5774
MD5 fcd7bc39ebac9a1706c2763efc1bb3ab
BLAKE2b-256 5172839dfa1b89f832cac80e25c6ad0bf40b541fde99523aef6bc4c9b17a8001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d1b8db1a5e8fdb49b37ba4a8f9275b6de0d7d39fb6567b81e5aa09ba7b25ada
MD5 25365cb24a9c851906cf9e1194a481d4
BLAKE2b-256 b1e9410301b38323fd1be77470f9c557a9e4c7cbe3a647ea49dc4535474be63a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb14ee0372bca6b56ad0d922db357767f01ec79f71d7d3e40a71f50e8df3e6a2
MD5 83b6c1fea04490ccb01ae6ac3a637616
BLAKE2b-256 4519a129b571d3a8108f3c6bec833fba3ecb81666e9d2bbe79a3687ca8f9e928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 387b915944800a3f1752b74039f89410b2c1b983225bb86ba459a19accc037b6
MD5 2903865fac856033ef034025cdfc166d
BLAKE2b-256 a4c2fb83b348875479c7c02e0ae87e50833b71365025cbd2f7b5a73b64668212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b2a015562561b2091abf05fc6dcd48efbac29e5f2006f7d411dca4efbcb3367
MD5 515ed883d21306a5907acddd62a2744a
BLAKE2b-256 3910e1638cf8c5eccc4a3fa4be62a632f7ce5712f9f63c14652b495d0f1c5537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d7cf157c9e86a96a24c17c79986b3a3ef34749196c28ce98cccf34ab2af3e23
MD5 65e8c94cdc086fa1abc51a0bd40370cf
BLAKE2b-256 e1ac5bdf2dad2b670fdfc8cbf9500e4a11703fb129c53987b5d2cc13a8787126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7346120f369186ea699d9ae56a8868b8e455366a86a911ceb4d6fedceda969f0
MD5 337e4c4308910ec1c7345c8cce7fbb98
BLAKE2b-256 0d9bfdabd0246759eef6d2bfd1ecd0dc8eccda7ac983c89207f909faeb2b950b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efb48a1ade9ecdac257b37f267fac9c59b2c857f9f2e7d02d494a17fdc5aa4dd
MD5 1b2a0720f0121b4ae0d5ad808a0cbea3
BLAKE2b-256 9590185270f5911d3d0d3c9756907c6cc54ca632dc5fc1bd7a88de2035143ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9345952eb5c01b4b483c710f33704aae2b23e9ed2a8d9ff34b160538ab494c1
MD5 145d53917c4d5d5b61207525d284be9b
BLAKE2b-256 fefd31ad2bd468c8afc2edd80f2406062c698a9ac8f9aadb02b8d4ceb16fdcfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b189f7efdfde0cb330e63f5b006456cd8776888d1e757029e98a819718cda3c8
MD5 22c2131d4fa4180642060047b3acd145
BLAKE2b-256 789de70598f9dbadbffc0833765bb4e7b0ece7281769b2e61f86805d084a2f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aef872f9911f480ec02fb4a016d69a86d28acfefb5cdf8e957910e283570ec90
MD5 8a8c595279102ad2fe1288ebfef7316f
BLAKE2b-256 5db1ac20516cdefcb105aba5ea91278de8347976a9b7c58df332388bffaff468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd901944519ab54f00ebcb2594486648db3893850520a813fe9b2d96bf50899a
MD5 2c18d11058342d4cc0772d185701a967
BLAKE2b-256 954f2409a77fac22e57ad28dafb6d9690908bdd85d220e2ca6744d0cdcb8ce86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b955a3328b5d9e64febc514de902af332e1539ef44475e7f5abefe1c35b7514d
MD5 bea777a68d88cc3587c4cb09c2cd10eb
BLAKE2b-256 24014d3b6ee091c1a64a5a1355503932f84712edd07b146a10df6ba08f732c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fdfefe8f7a6c140fd035d5a6a9bf1752ab384957197b6ec5689ea9c1f2bddc6
MD5 bb074767a51bd3769906c8bcb7628e1d
BLAKE2b-256 2316c65af4cdafcf8818da605e23eeb288931b6a3bdfeca6d0c6e733da77b226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b4b5f52fd2b4a2ab136d865cc581831e45e320fd3dc83319de2eef7650427c6
MD5 66d1edff1846243f80dad280eb9a5bf8
BLAKE2b-256 27c6ac06be5d389de2ee9310446704862c6521df2c109b25afeed3ce74482606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07b947f2ca5b7a1f1086c1a3807517161e6e9422ed3e158683bb1782fe83151d
MD5 748afe64cf155f65af127788e07bd6d0
BLAKE2b-256 8ed8b25e9743ffe8098ad9ba7d17bf6387a018fcda079bffd6e98224ac764a15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ef71d32fe04f72e7d5b3c1af4d1606070e1129ee59925cf0c3c29154fe58522b
MD5 c045e967098231abe371a8aa7e6792fa
BLAKE2b-256 f4e0e4cf0967f4ebc245d062e9308d5f4ba2eb6f02928fcc057fc76ef883f0ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c96244b98f0ec41495602a885193e0cd6459cac6f37e1f68f3ac6f168fb734b
MD5 a89c14f91a2e340e220cc289780d5c15
BLAKE2b-256 27d63d1bacacb9804bd6318d15f4c12bb6521bbf6c71e250e62e8734a40a7ebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f46ce64b7a63433126733ace5be1c70c9812f921cf20fce56d1e21a7e0c7e95e
MD5 eeb69e66e797b3a757d313e3a3ce298c
BLAKE2b-256 41ddd987925c0fd4382830bc531ec490be62e00a7b26faf4f7d27d9ca615f4a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1fd7ebaa03d7528729679facc2eeee3c1535b21550040a1346907bdbd56d53f9
MD5 85e829f829c4248094853f6cd8ccfe3c
BLAKE2b-256 f789f883a9a43b8e7b99cb95deafb35acd388966684ab4c3cc1d57fa52bb52a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c820efa09c1bd9dc73b34d8ada3e7e61523481f14592d69bde258e2e465283dd
MD5 f97c8979fac5b2def2a60ff1b953cc2f
BLAKE2b-256 e00c0910b2e7a168b6d1c3b3450c3fc89094df8ccba8a1ca2c8e07f0de1f231c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a7b6166f104de9b2d2803c8b14de3a33c717ed10ab6a09d8ca9d481bae0190c
MD5 ea11b16cbb758260f872ae87186d0d31
BLAKE2b-256 571e8507afd0b71eb850463e62835731f53c43ecd579f7f6d82233d525f450c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc03539b4fd52d611bfb0483f1f14a8237a64a807ea5347e854080ba927a3ac8
MD5 ff5caf9b18620394bb945c4ad89002cc
BLAKE2b-256 b641c726bd61af6eeb281815fabeee519e6760be39b7c814e87715823f98ff5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a9dbf50537e756f9afd70c3e605426366de583b927f9f984b9ff220c25eeb59
MD5 17a37429f9b1ddc21f40753e28003fe6
BLAKE2b-256 6cdbfcb585478c56a2a16e808263f5978777344d38617d215cbe8b777f84fdbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73ab5b88609c4a659fbae271dc5e9b20fdcd48715ac5df29469922865a18f1fc
MD5 b0de2635c7df91688995b17f2e474072
BLAKE2b-256 cef373a911a44fbd30344d140dc1d53668739705b12705405ac0f690f5346523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4191c5f353c45696c8e2dfbd95ad64a7f89fe8decaef0977bbeee789ccf859af
MD5 29204dde32e377af94dda28c9b6c78d7
BLAKE2b-256 09019c84c42df8a0a4b109a775c64172dacd5a5f61f7b0d2fdefbff517837247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1ecb24179426e1566df306522361021779ec87e12cb405bce489cc2c4cf49ae
MD5 ac935b4d9f60e0c2e831564f7da66849
BLAKE2b-256 ea34bfb909a83d27af1f64f9d6826866c2c063859da7e9a653281801d30fc4f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1cb51afcaf0c5a32f4b2d6d4af99b0b62a7fb3fca8fbaaf9cca941171d6a6871
MD5 0ab22d6cac960f644b48a397947e5dcb
BLAKE2b-256 de8b2771f4d5b786a829831b3d6d441b1346251ea0aee4a0859935ec7950ab3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7f7d150d892c7260d59d703d94d4689bc73774c5de8afc1c66933a3ae84f8f1
MD5 d2cfa7c0a1b8346f87995cc59eb57ec1
BLAKE2b-256 a9914c2658e03bcf8b86bfee732c1cc939d4ebd69654099229df400e26560bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35a5317d3b31ea66cf454944caaa3b000ccca6ba5d64d79f96c012503a8f813b
MD5 a04f3906ebfd2ce84204f21f6b0ea02d
BLAKE2b-256 f5bda5026db1bd06f0ded88864a3f943b95d2b5413b26300302e3f16e61c210c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 abd27f5984125acf8d3f6fe0ced7d23bcc958a488dbdeb24d8fa4ea2585e9598
MD5 db649610a0ce614e2c5ef1d6c836d119
BLAKE2b-256 13a1f7d43f2548c37f0bebf8d98f9b7c3b8cc3a9d537d2a9d664b6f81a635fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0edf8cd15e211dd66d8db1bf084397e5a224531b687c2513b60ce4d02f0929c1
MD5 db5795f8650742424d162558759ef297
BLAKE2b-256 5abbe7a772a67b9a739dc32c6727a15d9415263c29eba76fb7bb9edba6c05d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for report_core-0.9.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2879e127f95ba370966772db325e3157083b2f48e90de25dac6dee534a7812e
MD5 4c68b87e9cbcf094ab1e1e85ecbf5c3e
BLAKE2b-256 20bfcab4cfeada37a4a3249f51354471fa24e08eb41a6eb7e5e7f700338a1374

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