Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mecaneer23/get
Simple clone of wget/cURL
https://github.com/mecaneer23/get
Last synced: about 2 months ago
JSON representation
Simple clone of wget/cURL
- Host: GitHub
- URL: https://github.com/mecaneer23/get
- Owner: mecaneer23
- License: mit
- Created: 2024-08-31T15:27:14.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T20:33:12.000Z (4 months ago)
- Last Synced: 2024-09-06T05:28:59.669Z (4 months ago)
- Language: Python
- Homepage:
- Size: 183 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Get
Simple clone of wget/cURL
## Usage
### Raw mode
Output to stdout (print)
```bash
python3 get.py https://example.com
```Output to file `file.txt`
```bash
python3 get.py https://example.com file.txt
```### Assisted mode
```bash
python3 get.py -a
```![Gif of assisted mode](assistantUsage.gif)
Skipping prompt for save path
```bash
python3 get.py -a path/to/save-file.txt
```