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

https://github.com/hamdivazim/usefulib

A useful library for Python with assorted functions to make small tasks easier.
https://github.com/hamdivazim/usefulib

python python3 useful useful-scripts usefulib

Last synced: 7 months ago
JSON representation

A useful library for Python with assorted functions to make small tasks easier.

Awesome Lists containing this project

README

          




python versions
pypi version
first timer friendly
usefulib ideas
usefulib ideas

usefulib v1.0.5


A useful library for Python with a lot of assorted functions to make numerous small tasks easier.

## How to install
Install with pip in your terminal, making sure Python is added to PATH:
```
$ pip install usefulib
```
Alternatively, you can use the git URL to do the same. This is NOT recommended and should only be used if you are experiencing issues installing normally (in which case please [file an issue](https://github.com/hamdivazim/usefulib/issues/new?assignees=hamdivazim&labels=bug&template=bug_report.md&title=Error%20during%20pip%20install))
```
$ pip install "git+https://github.com/hamdivazim/usefulib.git@pip-install#egg=usefulib"
```

## How to use
All you need to do is import the package, and all usefulibs that you may want will come along with it! As an example:
```python
import usefulib

a_string = "abcdef123456"
reverse_string = usefulib.reverse_string(a_string)
```
If all you need is one usefulib:
```python
from usefulib import reverse_string

a_string = "abcdef123456"
reverse_string = reverse_string(a_string)
```

## What can it do?
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).

## Support usefulib
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 😃!

## View [the site](https://hamdivazim.github.io/usefulib/)
Recently, usefulib's website launched at https://hamdivazim.github.io/usefulib/, feel free to report bugs or give feature requests, using the `web-issue` label. Or, take a look at [the discussion](https://github.com/hamdivazim/usefulib/discussions/13).

## License
usefulib is licensed under the [GNU General Public License v3.0](https://github.com/hamdivazim/usefulib/blob/main/LICENSE).