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.
- Host: GitHub
- URL: https://github.com/hamdivazim/usefulib
- Owner: hamdivazim
- License: gpl-3.0
- Created: 2023-04-18T17:50:33.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-02T10:58:26.000Z (over 1 year ago)
- Last Synced: 2025-06-12T12:16:44.234Z (9 months ago)
- Topics: python, python3, useful, useful-scripts, usefulib
- Language: Python
- Homepage: https://hamdivazim.github.io/usefulib/
- Size: 739 KB
- Stars: 12
- Watchers: 2
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
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).