Skip to content

Commit

Permalink
First release
Browse files Browse the repository at this point in the history
  • Loading branch information
MonsieurV committed Jan 15, 2021
1 parent 79deb54 commit 8a57d0a
Show file tree
Hide file tree
Showing 4 changed files with 229 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test:
pipenv run pytest -vv

install-package-in-venv:
pipenv uninstall --skip-lock tqwgp_parser
pipenv uninstall --skip-lock tqwgp-parser
pipenv run python setup.py install

test-package-in-venv: install-package-in-venv test
Expand Down
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ hy = "*"
black = "*"
pytest = "*"
pyyaml = "*"
twine = "*"

[requires]
python_version = "3"
225 changes: 224 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Talk Quote Work Get-Paid (aka TQWGP) proposal and invoice parser

[![Build Status](https://travis-ci.org/YtoTech/talk-quote-work-getpaid-parser.svg?branch=master)](https://travis-ci.org/YtoTech/talk-quote-work-getpaid-parser) [![PyPI version](https://badge.fury.io/py/tqwgp-parser.svg)](https://pypi.python.org/pypi/tqwgp-parser/)

> Your text base sales and accounting toolkit, especially designed for freelancers, by freelancers
# Installing
Expand Down Expand Up @@ -142,7 +144,7 @@ pprint.pprint(my_parsed_invoices)

## Going further

You could then feed the processed data to your own document edition toolchain to create PDFs from it. This could include using Pandoc and LaTeX to edit the PDF (see for eg. [mrzool's invoice-boilerplate](https://github.com/mrzool/invoice-boilerplate/) setup) ; or sending it to an online PDF compiler with your own template (for eg. with a LaTeX template and [LaTeX-on-HTTP](https://github.com/YtoTech/latex-on-http), or with HTML/CSS and [WeasyPrint](https://github.com/Kozea/WeasyPrint/tree/gh-pages/samples/invoice)).
You could then feed the processed data to your own document edition toolchain to create PDFs from it. This could include using Pandoc and LaTeX to edit the PDF (see for eg. [mrzool's invoice-boilerplate](https://github.com/mrzool/invoice-boilerplate/) setup) ; or sending it to an online PDF compiler with your own template (for eg. with a LaTeX template and [LaTeX-on-HTTP](https://github.com/YtoTech/latex-on-http)), or using HTML/CSS based template (with tooks like [WeasyPrint](https://github.com/Kozea/WeasyPrint/tree/gh-pages/samples/invoice) or [ReLaXed](https://github.com/RelaxedJS/ReLaXed)).

You may also use the parsed data in a web application.

Expand Down

0 comments on commit 8a57d0a

Please sign in to comment.