Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phuang1024/cliwebcat
CLI Web-CAT interface for people who use VIM.
https://github.com/phuang1024/cliwebcat
Last synced: 9 days ago
JSON representation
CLI Web-CAT interface for people who use VIM.
- Host: GitHub
- URL: https://github.com/phuang1024/cliwebcat
- Owner: phuang1024
- License: gpl-3.0
- Created: 2021-11-21T21:21:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-22T03:31:55.000Z (about 3 years ago)
- Last Synced: 2024-11-05T22:38:08.800Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CLI Web-CAT
CLI Web-CAT interface.
## Installation
``` bash
git clone https://github.com/phuang1024/cliwebcat
cd cliwebcat
python setup.py bdist_wheel sdist
cd dist
pip install *.whlwebcat --help
```## Configuration
When you run `webcat` the first time, it will interactively ask you for configuration.
* Snarf root URL: Root path e.g. `http://example.com/apcssnarf`
* Username: Your WebCAT username.
* Password: Stored in plaintext.## Usage
``` bash
# List packages
webcat
webcat ls# Show hidden packages
webcat --hidden
webcat ls --hidden# Show package info
webcat info 12345 # index
webcat into JMCh12_AsDf # name# Edit configuration file with VIM
webcat config# Snarf package
webcat snarf 12345
webcat snarf JMCh12_AsDf# Submit (not implemneted yet)
webcat submit 12345 /path/to/folder
webcat submit JMCh12_AsDf /path/to/folder```