Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rishiraj authored Sep 23, 2024
1 parent e4e181a commit 1d45edf
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Install FireRequests using pip:

```bash
pip install firerequests
!pip install firerequests
```

## Quick Start 🏁
Expand All @@ -30,16 +30,15 @@ Accelerate your downloads with just a few lines of code:
from firerequests import FireRequests

url = "https://mirror.clarkson.edu/zorinos/isos/17/Zorin-OS-17.2-Core-64-bit.iso"
filename = "Zorin-OS-17.2-Core-64-bit.iso"

fr = FireRequests()
fr.download(url, filename)
fr.download(url)
```

### Command Line Interface

```bash
fr download https://mirror.clarkson.edu/zorinos/isos/17/Zorin-OS-17.2-Core-64-bit.iso
!fr download https://mirror.clarkson.edu/zorinos/isos/17/Zorin-OS-17.2-Core-64-bit.iso
```

#### Parameters:
Expand Down Expand Up @@ -101,10 +100,9 @@ fr.upload(file_path, parts_urls, chunk_size=2 * 1024 * 1024, max_files=10)
from firerequests import FireRequests

url = "https://example.com/largefile.iso"
filename = "largefile.iso"

fr = FireRequests()
fr.compare(url, filename)
fr.compare(url)
```

## License 📄
Expand Down

0 comments on commit 1d45edf

Please sign in to comment.