diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2023-09-13 13:51:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-13 13:51:37 -0400 |
commit | 6d2ad5ec316d313de5e181613daaff3cd95f3f23 (patch) | |
tree | e1300b6d9dff6f0483c7750cac0ce27715985d70 /README.md | |
parent | 3a5f5e528d13d30e0b240edb19859c4cf570e9b3 (diff) | |
parent | ee7de4593594013ca117bd9b72da44ab1e731c73 (diff) | |
download | firewatch-master.tar.gz |
Add ability to display .conda packages
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 21 |
1 files changed, 16 insertions, 5 deletions
@@ -18,23 +18,28 @@ This utility requires Python 3.6 or greater and `requests`. ## Usage ``` -$ firewatch --help -usage: firewatch [-h] [--benchmark] [--brute-force] [--channel CHANNELS] - [--order ORDER] [--platform PLATFORMS] - [--time-span TIME_SPAN] +usage: firewatch [-h] [--benchmark] [--brute-force] [--channel CHANNELS] [--deprecated] [--order ORDER] + [--platform PLATFORMS] [--r-lang] [--time-span TIME_SPAN] [--version] + [package ...] -optional arguments: +positional arguments: + package Return package starting with pattern PACKAGE + +options: -h, --help show this help message and exit --benchmark Display total time to parse and sort channel data --brute-force Derive timestamps from HTTP header: "last-modified" --channel CHANNELS, -c CHANNELS Conda channel + --deprecated, -d Enable deprecated Anaconda, Inc. channel(s) --order ORDER, -o ORDER [asc|dsc] --platform PLATFORMS, -p PLATFORMS [linux|osx|win]-[32|64] + --r-lang, -R Enable R channels --time-span TIME_SPAN, -t TIME_SPAN i[s|m|h|d|w|M|y|D|c] (120s, 12h, 1d, 2w, 3m, 4y) + --version, -V Display software version ``` @@ -66,4 +71,10 @@ $ firewatch -t 3d -c conda-forge -c intel $ firewatch -t 1M -c http://ssb.stsci.edu/astroconda ``` +_What about showing only certain packages?_ + +You are in luck. Issue package name(s) as positional arguments. +``` +$ firewatch -c conda-forge cfitsio hstcal +``` |