Skip to main content

Report generator for html reports

Project description

numerous Report Generator

A python package focused on enabling you to create beautiful and powerful html reports with great ease. You can use the reports to document your work and showcase your data, even generating these automitically with your analysis code already implemented in python.

This package exposes a simple library to create a report, adding your sections, figures and tables or even just directly html divs with your own custom html code.

When you have added your content to the report you can save it to a stand-alone html file you can share with anyone.

We have provided you with a first template that you can modify to your needs. Soon we will publish a guide on how to change basic things in it - for instance the logo file.

Installation

The package numerous report generator can be installed with:

pip install numerous-report-generator

Quick start

Here is a simple example to get you started once you have installed the package:

from pathlib import Path
import os
from numerous.html_report_generator import Report, Section, GoFigure, DataFrameTable
import pandas as pd

# Define output folder and html file
folder = Path('./output')
filename = 'my_first_report'
file = folder.joinpath(filename+'.html')

#Remove previous report file if exists
if os.path.exists(file):
    os.remove(file)

# Create report
report = Report(target_folder=folder, filename=filename)

# Add info for the header and title page
report.add_header_info(header='My Organization',
                       title='My First Report',
                       sub_title='but not the last',
                       sub_sub_title='at all',
                       footer_title='My first footer',
                       footer_content='This is the end!'
                       )

#Add a section
section = Section(section_title="Section 1")

#create a figure
figure = GoFigure({
        "data": [{"type": "bar",
                  "x": [1, 2, 3],
                  "y": [1, 3, 2]}],
        "layout": {"title": {"text": "A Figure Specified By Python Dictionary"}}
    }, caption="Test figure", notes=["Please notice x", "Please notice y"])

#create a table
table = DataFrameTable(pd.DataFrame({
    'a': [1, 2, 3],
    'b': [4, 5, 6]
}), caption="This is a test table")

#Add the figure and table to the section
section.add_content({
    'figure': figure,
    'table': table
})

#Add the section to the report
report.add_blocks({
    'section': section
})

# Save the report - creates the html output file
report.save()

Contributing:

Please see CONTRIBUTING.md for details on how to contribute.

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

html-report-generator-0.0.1.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

html_report_generator-0.0.1-py3-none-any.whl (18.8 kB view details)

Uploaded Python 3

File details

Details for the file html-report-generator-0.0.1.tar.gz.

File metadata

  • Download URL: html-report-generator-0.0.1.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.5

File hashes

Hashes for html-report-generator-0.0.1.tar.gz
Algorithm Hash digest
SHA256 745323d619818d40081504f5bca15d8dc699686b28819f6db98f4bc851d90f59
MD5 b2b0ef1d29289d450e42ab6c45b09a62
BLAKE2b-256 d8b880f3a3587624d9de8ae6232f489edeb201cd004478de663fc635f54f4657

See more details on using hashes here.

File details

Details for the file html_report_generator-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for html_report_generator-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 12854b77038622cfe4439952f71a997b8daf63e522817634ce8dcc637dd52987
MD5 1846e303b2502cb143c062ceb120b2c1
BLAKE2b-256 3cc5eac4fc8f853429b58b97edc49ded0e8da06d6851e25243a6f98f8e3a0416

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