31 lines
493 B
Markdown
31 lines
493 B
Markdown
# ss-downloader
|
|
|
|
Install poetry & Python 3.8+
|
|
|
|
```
|
|
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
|
|
```
|
|
|
|
## how to use
|
|
|
|
```
|
|
source load-env.sh
|
|
poetry run python list.py
|
|
poetry run python download.py <dataset name>
|
|
```
|
|
|
|
## Notes
|
|
|
|
ssgetpy does not discriminate "real" datatype from "integer".
|
|
Therefore, we have to do some filtering on the returned results.
|
|
|
|
## how this was done
|
|
|
|
```
|
|
poetry-new init
|
|
poetry add ssgetpy
|
|
```
|
|
|
|
```
|
|
poetry install
|
|
``` |