https://github.com/esss/jira2latex
Converts Jira issues to latex, useful when writing customer reports
https://github.com/esss/jira2latex
Last synced: 12 months ago
JSON representation
Converts Jira issues to latex, useful when writing customer reports
- Host: GitHub
- URL: https://github.com/esss/jira2latex
- Owner: ESSS
- License: mit
- Created: 2019-03-20T12:11:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-22T16:54:09.000Z (almost 6 years ago)
- Last Synced: 2025-04-05T10:33:26.131Z (about 1 year ago)
- Language: Python
- Size: 8.79 KB
- Stars: 6
- Watchers: 10
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Usage
* Create the environment: `conda devenv`
* Open `issues_to_latex_config.yaml` and configure it the way tou need. If you don't type your password there,
it'll be asked on the command line.
* Run `python issues_to_latex.py`, in case you get `JIRAError 403 CAPTCHA_CHALLENGE` open your browser and logout/login again on
Jira.
After running `python issues_to_latex.py`, a `issues_to_latex.txt` is generated.
The `issues_to_latex.py` script expects a `issues_to_latex_config.yaml` on the same folder,
so in case need to move the script, don't forget to move the config file as well.
## Output example:
```latex
% ------------------Component Name---------------------
Epic name
\item \textbf{Issue-key}: customer summary: customer report;
\item \textbf{Issue-key}: customer summary;
Another epic
\item \textbf{Issue-key}: customer summary;
% ------------------Another component---------------------
Epic name
\item \textbf{Issue-key}: customer summary: customer report with text \textit{format};
\item \textbf{Issue-key}: customer summary;
Another epic
\item \textbf{Issue-key}: customer summary;
% ------------------ Needs review---------------------
No Epic
\item \textbf{Issue-key}: None;
\item \textbf{Issue-key}: None;
```