Skip to content

Commit

Permalink
#413 done
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Oct 27, 2022
1 parent 63dace0 commit 23089ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,13 @@ It providers contrib modules of
## Installation

1. Install required dependencies
```
```bash
pip install git+https://github.com/nicolay-r/AREkit.git@0.23.0-rc
```

2. Download Resources
```python
from arekit.data import download_data
download_data()
```bash
python -m arekit.download_data
```

## Tutorials
Expand Down
6 changes: 5 additions & 1 deletion arekit/data.py → arekit/download_data.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from arekit.contrib.source.download import download


def download_data():
def do_download():
""" Download all the sources utilized by contrib/sources.
"""
download()


# Downloading data.
do_download()

0 comments on commit 23089ca

Please sign in to comment.