Skip to content

Commit

Permalink
[ALTERAÇÃO BYTES e CONF]
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardoSFReis committed Jan 2, 2025
1 parent 839e5bf commit 7110b50
Show file tree
Hide file tree
Showing 11 changed files with 248 additions and 288 deletions.
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
![pyreportjasperbytesUVV logo](https://acesseonline-arquivos-publicos.s3.us-east-2.amazonaws.com/logo-pyreportjasper.png)

# pyreportjasperbytesUVV


[![Python Versions](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue.svg)](#)
[![Java Versions](https://img.shields.io/badge/java-%3E=9%20and%20%3C=20-blue.svg)](#)
[![JVM](https://img.shields.io/badge/jvm-OpenJDK%20%7C%20Oracle%20%7C%20Corretto%20%7C%20Temurin-blue.svg)](#)
[![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20Windows%20%7C%20Mac-blue)](#)
[![License](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/EduardoSFReis/pyreportjasper/blob/master/LICENSE)

Este pacote tem como objetivo compilar e processar relatórios **JasperReports**
(`.jrxml` e `.jasper`). Ele permite gerar relatórios complexos, prontos para
uso em produção, sem precisar escrever manualmente layout em HTML ou CSS.

Com **JasperReports**, você pode criar relatórios em vários formatos:
PDF, HTML, Excel, OpenOffice e Word — tudo isso de forma simples e rápida.

### Destaques do JasperReports
- Engine de relatórios poderoso, escrito em Java.
- Funciona com diversas fontes de dados (bancos, CSV, XML, JSON etc.).
- Possui grande comunidade e documentação.
- Altamente customizável, permitindo layouts avançados.

### Sobre este fork
Este repositório é um **fork** de [PyReportJasper (acesseonline/pyreportjasper)](https://github.com/acesseonline/pyreportjasper).
A grande alteração nesta versão é que **todas as saídas são retornadas em bytes**.

### Links Úteis
- **Code**: [GitHub](https://github.com/EduardoSFReis/pyreportjasper)
- **Issue tracker**: [GitHub Issues](https://github.com/EduardoSFReis/pyreportjasper/issues)
- **Documentation**: [Python Docs](https://pyreportjasper.readthedocs.io/en/latest/)
- **License**: [GNU GENERAL PUBLIC LICENSE](https://github.com/EduardoSFReis/pyreportjasper/blob/master/LICENSE)
- **Build status**: [![TestsCI](https://github.com/EduardoSFReis/pyreportjasper/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/EduardoSFReis/pyreportjasper/actions?query=workflow%3ATests)
- **Version**: [![PyPI version](https://img.shields.io/pypi/v/pyreportjasper?style=flat-square)](https://pypi.org/project/pyreportjasper/)

56 changes: 0 additions & 56 deletions README.rst

This file was deleted.

3 changes: 0 additions & 3 deletions pyproject.toml

This file was deleted.

3 changes: 2 additions & 1 deletion pyreportjasper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# GNU GENERAL PUBLIC LICENSE
#
# 2023 Jadson Bonfim Ribeiro <[email protected]>
#
## Versão alterada 2024 Eduardo Soares <[email protected]>


from .pyreportjasper import PyReportJasper

Expand Down
3 changes: 2 additions & 1 deletion pyreportjasper/application_class_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# GNU GENERAL PUBLIC LICENSE
#
# 2023 Jadson Bonfim Ribeiro <[email protected]>
#
## Versão alterada 2024 Eduardo Soares <[email protected]>


class ApplicationClassPath:
pass
3 changes: 2 additions & 1 deletion pyreportjasper/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# GNU GENERAL PUBLIC LICENSE
#
# 2023 Jadson Bonfim Ribeiro <[email protected]>
#
## Versão alterada 2024 Eduardo Soares <[email protected]>


class Config:
askFilter = None
Expand Down
3 changes: 2 additions & 1 deletion pyreportjasper/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# GNU GENERAL PUBLIC LICENSE
#
# 2023 Jadson Bonfim Ribeiro <[email protected]>
#
## Versão alterada 2024 Eduardo Soares <[email protected]>


import os
import jpype
Expand Down
3 changes: 2 additions & 1 deletion pyreportjasper/pyreportjasper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# GNU GENERAL PUBLIC LICENSE
#
# 2024 Jadson Bonfim Ribeiro <[email protected]>
#
## Versão alterada 2024 Eduardo Soares <[email protected]>


import os
import warnings
Expand Down
Loading

0 comments on commit 7110b50

Please sign in to comment.