Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```