usefulib


Nameusefulib JSON
Version 1.0.4 PyPI version JSON
download
home_page
SummaryA collection of assorted methods to make small tasks easier.
upload_time2023-04-26 16:26:09
maintainer
docs_urlNone
authorHamd Waseem
requires_python
license
keywords python useful usefulib collection
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<div align="center">
  <img src="https://github.com/hamdivazim/usefulib/raw/main/logo.png">
</div>
<a style="display:inline;" href="#"><img src="https://img.shields.io/badge/Python- >= 2.7 -blue?style=plastic.svg" alt="python versions" /></a>
<a style="display:inline;" href="#"><img src="https://badge.fury.io/py/usefulib.svg" alt="pypi version" /></a>
<a style="display:inline;" href="#"><img src="https://img.shields.io/badge/first timer-friendly-4DC71F?style=plastic.svg" alt="first timer friendly" /></a>
<a style="display:inline;" href="https://github.com/hamdivazim/usefulib/labels/usefulib-idea"><img src="https://img.shields.io/github/issues-raw/hamdivazim/usefulib/usefulib-idea?color=4DC71F&label=usefulib%20ideas" alt="usefulib ideas" /></a>
<a style="display:inline;" href="#"><img src="https://img.shields.io/badge/tests- all passing -4DC71F?style=plastic.svg" alt="usefulib ideas" /></a>



<h1>usefulib v1.0.4</h1>
A useful library for Python with <em>a lot</em> of assorted functions to make numerous small tasks easier.

### GitHub Page: https://github.com/hamdivazim/usefulib

## 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.
```
$ 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 😃!

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




            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "usefulib",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,useful,usefulib,collection",
    "author": "Hamd Waseem",
    "author_email": "<codingboy.cw@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/ec/da/82488823a0ed34efedda7b19d34273a03c35b95fa584c0051d53c2a284e9/usefulib-1.0.4.tar.gz",
    "platform": null,
    "description": "\n<div align=\"center\">\n  <img src=\"https://github.com/hamdivazim/usefulib/raw/main/logo.png\">\n</div>\n<a style=\"display:inline;\" href=\"#\"><img src=\"https://img.shields.io/badge/Python- >= 2.7 -blue?style=plastic.svg\" alt=\"python versions\" /></a>\n<a style=\"display:inline;\" href=\"#\"><img src=\"https://badge.fury.io/py/usefulib.svg\" alt=\"pypi version\" /></a>\n<a style=\"display:inline;\" href=\"#\"><img src=\"https://img.shields.io/badge/first timer-friendly-4DC71F?style=plastic.svg\" alt=\"first timer friendly\" /></a>\n<a style=\"display:inline;\" href=\"https://github.com/hamdivazim/usefulib/labels/usefulib-idea\"><img src=\"https://img.shields.io/github/issues-raw/hamdivazim/usefulib/usefulib-idea?color=4DC71F&label=usefulib%20ideas\" alt=\"usefulib ideas\" /></a>\n<a style=\"display:inline;\" href=\"#\"><img src=\"https://img.shields.io/badge/tests- all passing -4DC71F?style=plastic.svg\" alt=\"usefulib ideas\" /></a>\n\n\n\n<h1>usefulib v1.0.4</h1>\nA useful library for Python with <em>a lot</em> of assorted functions to make numerous small tasks easier.\n\n### GitHub Page: https://github.com/hamdivazim/usefulib\n\n## How to install\nInstall with pip in your terminal, making sure Python is added to PATH:\n```\n$ pip install usefulib\n```\nAlternatively, you can use the git URL to do the same.\n```\n$ pip install \"git+https://github.com/hamdivazim/usefulib.git@pip-install#egg=usefulib\"\n```\n\n## How to use\nAll you need to do is import the package, and all usefulibs that you may want will come along with it! As an example:\n```python\nimport usefulib\n\na_string = \"abcdef123456\"\nreverse_string = usefulib.reverse_string(a_string)\n```\nIf all you need is one usefulib:\n```python\nfrom usefulib import reverse_string\n\na_string = \"abcdef123456\"\nreverse_string = reverse_string(a_string)\n```\n\n## What can it do?\nAs 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).\n\n## Support usefulib\nusefulib 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 \ud83d\ude03!\n\n## License\nusefulib is licensed under the [GNU General Public License v3.0](https://github.com/hamdivazim/usefulib/blob/main/LICENSE).\n\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A collection of assorted methods to make small tasks easier.",
    "version": "1.0.4",
    "split_keywords": [
        "python",
        "useful",
        "usefulib",
        "collection"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ed5968dced21480d810c369585d2dd76b6bed2947135b96a6b44eebef5bc780",
                "md5": "1e2c02240b1f6ba4dabd3e12c7c5c00c",
                "sha256": "be0fb87b8daadc55cd43c34a4c16a8a6dc1aa621c3937e3d1aedd0b1e068221d"
            },
            "downloads": -1,
            "filename": "usefulib-1.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1e2c02240b1f6ba4dabd3e12c7c5c00c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 18407,
            "upload_time": "2023-04-26T16:26:06",
            "upload_time_iso_8601": "2023-04-26T16:26:06.309016Z",
            "url": "https://files.pythonhosted.org/packages/6e/d5/968dced21480d810c369585d2dd76b6bed2947135b96a6b44eebef5bc780/usefulib-1.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecda82488823a0ed34efedda7b19d34273a03c35b95fa584c0051d53c2a284e9",
                "md5": "6dad85e1df76be5edc972dbc27b1ea55",
                "sha256": "9a6d8f93363283dee321031839c1e4c2a1939d36a5c24f81f787966fc95534b2"
            },
            "downloads": -1,
            "filename": "usefulib-1.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "6dad85e1df76be5edc972dbc27b1ea55",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 17553,
            "upload_time": "2023-04-26T16:26:09",
            "upload_time_iso_8601": "2023-04-26T16:26:09.309194Z",
            "url": "https://files.pythonhosted.org/packages/ec/da/82488823a0ed34efedda7b19d34273a03c35b95fa584c0051d53c2a284e9/usefulib-1.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-26 16:26:09",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "usefulib"
}
        
Elapsed time: 0.05970s