Skip to content

Commit

Permalink
fix dead links in README when not in a local repo
Browse files Browse the repository at this point in the history
  • Loading branch information
pmayd committed Oct 13, 2022
1 parent 0dabe48 commit de02d11
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ logincheck()

If you can see a response like this, your setup is complete and you can start downloading data.

For more details, please study the provided sample notebook for [cache](./nb/cache.ipynb).
For more details, please study the provided sample notebook for [cache](https://github.com/CorrelAid/pystatis/blob/main/nb/cache.ipynb).

## How to use

Expand Down Expand Up @@ -90,7 +90,7 @@ results.tables.get_code([1,2,3]) # Gets the table codes, e.g. for downloading th
results.tables.get_metadata([1,2]) # Gets the metadata for the table
```

A complete overview of all use cases is provided in the [sample notebook.](/nb/find.py)
A complete overview of all use cases is provided in the sample notebook for [find](https://github.com/CorrelAid/pystatis/blob/main/nb/find.ipynb).

### Download data

Expand All @@ -116,7 +116,7 @@ c.get_data() # Only now the data is either fetched from GENESIS or loaded from
c.data # a pandas data frame
```

For more details, please study the provided sample notebook for [tables](./nb/table.ipynb) and [cubes](./nb/cube.ipynb).
For more details, please study the provided sample notebook for [tables](https://github.com/CorrelAid/pystatis/blob/main/nb/table.ipynb) and [cubes](https://github.com/CorrelAid/pystatis/blob/main/nb/cube.ipynb).

### Clear Cache

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ maintainers = [
]
description = "Python wrapper for GENESIS web service interface (API) of the Federal Statistical Office."
name = "pystatis"
version = "0.1.3"
version = "0.1.4"
readme = "README.md"
repository = "https://github.com/CorrelAid/pystatis/tree/v0.1.0"
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion src/pystatis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from pystatis.profile import change_password, remove_result
from pystatis.table import Table

__version__ = "0.1.3"
__version__ = "0.1.4"

__all__ = [
"change_password",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.1.0"
assert __version__ == "0.1.4"

0 comments on commit de02d11

Please sign in to comment.