-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
839e5bf
commit 7110b50
Showing
11 changed files
with
248 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/) | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
Oops, something went wrong.