1
0
This commit is contained in:
Simon Michael
2016-02-17 12:11:36 -08:00
parent ff99279b06
commit c210ff4bcd
2 changed files with 35 additions and 6 deletions

View File

@@ -154,7 +154,8 @@ You can use this to track and report the data needed for tax reporting. Fill out
<h5 id="data-import">data import</h5> <h5 id="data-import">data import</h5>
<ul> <ul>
<li><a href="https://launchpad.net/csv2ledger">icsvledger</a> CSV to journal converter</li> <li><a href="https://launchpad.net/csv2ledger">icsvledger</a> CSV to journal converter</li>
<li><a href="https://gitlab.com/egh/ledger-autosync">ledger-autosync</a> convert OFX to journal, deduplication, bank download</li> <li><a href="https://gitlab.com/egh/ledger-autosync">ledger-autosync</a> OFX download, OFX to journal conversion, deduplication</li>
<li><a href="https://gist.github.com/genegoykhman/3765100">qb2ledger</a> QuickBooks General Journal CSV to journal converter</li>
<li><a href="https://github.com/cantino/reckon">reckon</a> smart interactive/non-interactive CSV to journal converter</li> <li><a href="https://github.com/cantino/reckon">reckon</a> smart interactive/non-interactive CSV to journal converter</li>
</ul> </ul>
<h5 id="editor-support">editor support</h5> <h5 id="editor-support">editor support</h5>
@@ -172,8 +173,8 @@ You can use this to track and report the data needed for tax reporting. Fill out
<h5 id="time-tracking">time tracking</h5> <h5 id="time-tracking">time tracking</h5>
<ul> <ul>
<li><a href="https://github.com/jwiegley/org2tc">org2tc</a> org to timeclock converter</li> <li><a href="https://github.com/jwiegley/org2tc">org2tc</a> org to timeclock converter</li>
<li><a href="http://taskwarrior.org">taskwarrior</a> todo list manager, some *ledger integration for time reporting</li> <li><a href="https://gist.github.com/wbsch/d977b0ac29aa1dfa4437">on-modify.timetrack.py</a> taskwarrior hook for timeclock output</li>
<li><a href="https://github.com/MatthiasKauer/tim">tim</a> time tracking tool using hledger for reports</li> <li><a href="https://github.com/MatthiasKauer/tim">tim</a> time tracking tool using hledger for reporting</li>
</ul> </ul>
<h5 id="ui-console">UI, console</h5> <h5 id="ui-console">UI, console</h5>
<ul> <ul>
@@ -262,6 +263,10 @@ You can use this to track and report the data needed for tax reporting. Fill out
<li><a href="https://gist.github.com/simonmichael/a1addcb652da4e78b183">YNAB-ish envelope budgetting with hledger/ledger</a></li> <li><a href="https://gist.github.com/simonmichael/a1addcb652da4e78b183">YNAB-ish envelope budgetting with hledger/ledger</a></li>
</ul> </ul>
<h5 id="shared-expenses">shared expenses</h5> <h5 id="shared-expenses">shared expenses</h5>
<h5 id="invoicing">invoicing</h5>
<ul>
<li><a href="https://gist.github.com/simonmichael/986a65106a9db1f8bd68">invoicing entries</a></li>
</ul>
<h5 id="tax-reporting">tax reporting</h5> <h5 id="tax-reporting">tax reporting</h5>
<h5 id="time-tracking-1">time tracking</h5> <h5 id="time-tracking-1">time tracking</h5>
<ul> <ul>
@@ -272,6 +277,13 @@ You can use this to track and report the data needed for tax reporting. Fill out
<li><a href="https://github.com/conservancy/npo-ledger-cli/blob/master/npo-ledger-cli-tutorial.md">Non-Profit Accounting With Ledger CLI, A Tutorial</a> 2013</li> <li><a href="https://github.com/conservancy/npo-ledger-cli/blob/master/npo-ledger-cli-tutorial.md">Non-Profit Accounting With Ledger CLI, A Tutorial</a> 2013</li>
</ul> </ul>
<h5 id="import-and-export">import and export</h5> <h5 id="import-and-export">import and export</h5>
<h5 id="api-access">API access</h5>
<ul>
<li><p><a href="https://groups.google.com/forum/#!topic/ledger-cli/C99w-79Jq8o">Ledger Python 3 Support</a> Python</p></li>
<li><p><a href="https://github.com/Rudd-O/ledgerhelpers">ledgerhelpers</a> Python + CLI</p></li>
<li><p><a href="http://hackage.haskell.org/package/hledger-lib">hledger-lib</a>, <a href="http://hackage.haskell.org/package/hledger">hledger</a> Haskell</p></li>
<li><p><a href="http://editor.swagger.io/#/?import=demo.hledger.org/api/swagger.json&amp;no-proxy">hledger-api</a>, <a href="https://github.com/simonmichael/hledger/tree/master/hledger-api/examples">examples</a> JSON</p></li>
</ul>
</div> </div>
</div> </div>
<div class="row" style="text-align:center;"> <div class="row" style="text-align:center;">

View File

@@ -150,7 +150,8 @@ Fill out and submit tax forms with another tool, or by hand.
##### data import ##### data import
- [icsvledger](https://launchpad.net/csv2ledger) CSV to journal converter - [icsvledger](https://launchpad.net/csv2ledger) CSV to journal converter
- [ledger-autosync](https://gitlab.com/egh/ledger-autosync) convert OFX to journal, deduplication, bank download - [ledger-autosync](https://gitlab.com/egh/ledger-autosync) OFX download, OFX to journal conversion, deduplication
- [qb2ledger](https://gist.github.com/genegoykhman/3765100) QuickBooks General Journal CSV to journal converter
- [reckon](https://github.com/cantino/reckon) smart interactive/non-interactive CSV to journal converter - [reckon](https://github.com/cantino/reckon) smart interactive/non-interactive CSV to journal converter
##### editor support ##### editor support
@@ -168,8 +169,8 @@ Fill out and submit tax forms with another tool, or by hand.
##### time tracking ##### time tracking
- [org2tc](https://github.com/jwiegley/org2tc) org to timeclock converter - [org2tc](https://github.com/jwiegley/org2tc) org to timeclock converter
- [taskwarrior](http://taskwarrior.org) todo list manager, some *ledger integration for time reporting - [on-modify.timetrack.py](https://gist.github.com/wbsch/d977b0ac29aa1dfa4437) taskwarrior hook for timeclock output
- [tim](https://github.com/MatthiasKauer/tim) time tracking tool using hledger for reports - [tim](https://github.com/MatthiasKauer/tim) time tracking tool using hledger for reporting
##### UI, console ##### UI, console
@@ -271,6 +272,10 @@ Fill out and submit tax forms with another tool, or by hand.
##### shared expenses ##### shared expenses
##### invoicing
- [invoicing entries](https://gist.github.com/simonmichael/986a65106a9db1f8bd68)
##### tax reporting ##### tax reporting
##### time tracking ##### time tracking
@@ -283,6 +288,18 @@ Fill out and submit tax forms with another tool, or by hand.
##### import and export ##### import and export
##### API access
- [Ledger Python 3 Support](https://groups.google.com/forum/#!topic/ledger-cli/C99w-79Jq8o) Python
- [ledgerhelpers](https://github.com/Rudd-O/ledgerhelpers) Python + CLI
- [hledger-lib](http://hackage.haskell.org/package/hledger-lib), [hledger](http://hackage.haskell.org/package/hledger) Haskell
- [hledger-api](http://editor.swagger.io/#/?import=demo.hledger.org/api/swagger.json&no-proxy),
[examples](https://github.com/simonmichael/hledger/tree/master/hledger-api/examples)
JSON
</div> </div>
</div> </div>