Skip to content

Commit 1d45edf

Browse files
authored
Update README.md
1 parent e4e181a commit 1d45edf

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Install FireRequests using pip:
1818

1919
```bash
20-
pip install firerequests
20+
!pip install firerequests
2121
```
2222

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

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

3534
fr = FireRequests()
36-
fr.download(url, filename)
35+
fr.download(url)
3736
```
3837

3938
### Command Line Interface
4039

4140
```bash
42-
fr download https://mirror.clarkson.edu/zorinos/isos/17/Zorin-OS-17.2-Core-64-bit.iso
41+
!fr download https://mirror.clarkson.edu/zorinos/isos/17/Zorin-OS-17.2-Core-64-bit.iso
4342
```
4443

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

103102
url = "https://example.com/largefile.iso"
104-
filename = "largefile.iso"
105103

106104
fr = FireRequests()
107-
fr.compare(url, filename)
105+
fr.compare(url)
108106
```
109107

110108
## License 📄

0 commit comments

Comments
 (0)