From ed43a3d3166938b2a3710439fcedae73238a60e3 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Tue, 14 Nov 2023 17:05:30 +0000 Subject: [PATCH 1/2] #7 Update README --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a4339b0..77cc041 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,15 @@ DESHIMA raw data and downloader package -# Usage +## Use of the data + +Please contact [@astropenguin](https://github.com/astropenguin) before using the data. + +## Download the data ``` $ pip install deshima-rawdata -$ deshima-rawdata download +$ deshima-rawdata download ``` See the command help for more information. @@ -20,9 +24,9 @@ See the command help for more information. $ deshima-rawdata download --help ``` -# List of raw data +## List of the data -| Observation ID | File name | Source | Observation type | +| Observation ID | File name | Source name | Observation type | | --- | --- | --- | --- | | 20231108052231 | 20231108052231.tar.gz | Jupiter | raster | | 20231109015146 | 20231109015146.tar.gz | Jupiter | zscan | From 1a5b79c9a358223ed60ac8fd139975da4b358b41 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Tue, 14 Nov 2023 17:06:34 +0000 Subject: [PATCH 2/2] #7 Add alias (download = cli.download) --- deshima_rawdata/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/deshima_rawdata/__init__.py b/deshima_rawdata/__init__.py index e0e1e83..0a9373a 100644 --- a/deshima_rawdata/__init__.py +++ b/deshima_rawdata/__init__.py @@ -1,6 +1,10 @@ -__all__ = ["cli"] +__all__ = ["cli", "download"] __version__ = "2023.11.0" # submodules from . import cli + + +# aliases +from .cli import *