Skip to content

Commit 8c85a8b

Browse files
Update README.md
1 parent 55ccd54 commit 8c85a8b

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="https://github.com/hamdivazim/usefulib/raw/main/logo.png">
22
<h1>usefulib v1.0.2</h1>
3-
A useful library for Python with assorted functions to make small tasks easier.
3+
A useful library for Python with <em>a lot</em> of assorted functions to make numerous small tasks easier.
44

55
## How to install
66
Install with pip in your terminal, making sure Python is added to PATH:
@@ -20,9 +20,16 @@ import usefulib
2020
a_string = "abcdef123456"
2121
reverse_string = usefulib.reverse_string(a_string)
2222
```
23+
If all you need is one usefulib:
24+
```python
25+
from usefulib import reverse_string
26+
27+
a_string = "abcdef123456"
28+
reverse_string = reverse_string(a_string)
29+
```
2330

2431
## What can it do?
25-
usefulib is open-source and can be contributed to by anyone. Therefore, it offers a lot of simple functions to make writing code easier and quicker. A complete list of all functions usefulib provides can be found [here](https://github.com/hamdivazim/usefulib/blob/main/ALLFUNCTIONS.md).
32+
As an open-source library and can be contributed to by anyone, it offers a lot of simple functions to make writing code easier and quicker. A complete list of all usefulibs that are available can be found [here](https://github.com/hamdivazim/usefulib/blob/main/ALLFUNCTIONS.md).
2633

27-
## Can I contribute?
28-
Want to contribute? You rock! Before you do, make sure to read the [contributing guidelines](https://github.com/hamdivazim/usefulib/blob/main/CONTRIBUTING.md) and you should have your PR merged!
34+
## Support usefulib
35+
usefulib is full of contributions from the community! We're beginner-friendly here, so read the [contributing guidelines](https://github.com/hamdivazim/usefulib/blob/main/CONTRIBUTING.md) and give us your best usefulibs 😃!

0 commit comments

Comments
 (0)