Tidy for publishing.
This commit is contained in:
parent
b401bb7621
commit
abc97b9ec1
3 changed files with 14 additions and 7 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
.pytest_cache
|
.pytest_cache
|
||||||
.vimrc
|
.vimrc
|
||||||
|
dist/
|
||||||
|
|
11
README.md
11
README.md
|
@ -5,10 +5,10 @@ support for multiple data sources and output formats.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Install via [pip](https://packaging.python.org/tutorials/installing-packages/#use-pip-for-installing):
|
Install via [pipx](https://pypa.github.io/pipx/):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install pricehist
|
pipx install pricehist
|
||||||
```
|
```
|
||||||
|
|
||||||
## Sources
|
## Sources
|
||||||
|
@ -34,8 +34,7 @@ Show usage information:
|
||||||
pricehist -h
|
pricehist -h
|
||||||
```
|
```
|
||||||
```
|
```
|
||||||
usage: pricehist [-h] [--version] [--verbose | --debug]
|
usage: pricehist [-h] [--version] [--verbose] {sources,source,fetch} ...
|
||||||
{sources,source,fetch} ...
|
|
||||||
|
|
||||||
Fetch historical price data
|
Fetch historical price data
|
||||||
|
|
||||||
|
@ -51,7 +50,7 @@ commands:
|
||||||
fetch fetch prices
|
fetch fetch prices
|
||||||
```
|
```
|
||||||
|
|
||||||
Fetch prices after 2021-01-04, ending 2020-01-15, as CSV:
|
Fetch prices after 2021-01-04, ending 2021-01-15, as CSV:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pricehist fetch ecb EUR/AUD -sx 2021-01-04 -e 2021-01-15 -o csv
|
pricehist fetch ecb EUR/AUD -sx 2021-01-04 -e 2021-01-15 -o csv
|
||||||
|
@ -72,7 +71,7 @@ date,base,quote,amount,source,type
|
||||||
In Ledger format:
|
In Ledger format:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pricehist fetch ecb EUR/AUD -s 2021-01-01 -o ledger
|
pricehist fetch ecb EUR/AUD -s 2021-01-01 -o ledger | head
|
||||||
```
|
```
|
||||||
```
|
```
|
||||||
P 2021-01-04 00:00:00 EUR 1.5928 AUD
|
P 2021-01-04 00:00:00 EUR 1.5928 AUD
|
||||||
|
|
|
@ -1,9 +1,16 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "pricehist"
|
name = "pricehist"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "Fetch and process historical price data"
|
description = "Fetch and format historical price data"
|
||||||
authors = ["Chris Berkhout <chris@chrisberkhout.com>"]
|
authors = ["Chris Berkhout <chris@chrisberkhout.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
keywords = ["historical", "prices", "plaintext", "accounting", "csv", "gnucash", "ledger", "hledger", "beancount"]
|
||||||
|
readme = "README.md"
|
||||||
|
homepage = "https://gitlab.com/chrisberkhout/pricehist"
|
||||||
|
repository = "https://gitlab.com/chrisberkhout/pricehist"
|
||||||
|
include = [
|
||||||
|
"LICENSE",
|
||||||
|
]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.9"
|
python = "^3.9"
|
||||||
|
|
Loading…
Add table
Reference in a new issue