Metadata-Version: 2.1
Name: cool-utils
Version: 1.0.2
Summary: This is Cool Utility tools that you can use in python.
Home-page: https://github.com/Senarc-Studios/Cool-Utils
Author: Benitz Original
Author-email: benitzcoding@yahoo.com
License: BSD
Project-URL: Documentation, https://cool-utils.senarc.org
Project-URL: Issue tracker, https://github.com/Senarc-Studios/Cool-Utils/issues
Project-URL: Github, https://github.com/Senarc-Studios/Cool-Utils/tree/Development
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.7.0
Description-Content-Type: text/x-rst

Cool Utils
==========

This is Cool Utility tools that you can use in python. There are a few
tools that you might find very useful, you can use this on pretty much
any project and some utils might help you a lot and save so much time
since itâ€™s a simple function. We hope you like our utils. Have a nice
day!

Badges
------

|Discord| |PyPi| |Python Version| |License| |Issues| |Forks| |Stars|

Installation
------------

   **PyPi Installation**

**Windows:**

.. code:: sh

   $ pip install -U cool-utils

**Linux/MacOS:**

.. code:: sh

   $ python3 -m pip install -U cool-utils

..

   **Development Installation**

**Windows:**

.. code:: sh

   $ pip install git+https://github.com/Senarc-Studios/Cool-Utils

**Linux/MacOS:**

.. code:: sh

   $ python3 -m pip install -U git+https://github.com/Senarc-Studios/Cool-Utils

Examples
--------

**Compile:**

.. code:: python

   from utils import Compile

   strings = ["This", "Is", "A", "String"]
   num_list = [9, 4, 2]
   print(Compile.string(strings, startwith="Hey, ", endwith=".", joints=" "))
   print(Compile.numbers(num_list, startwith=6, endwith=0))
   >> Hey, This Is A String.
   >> 69420

**JSON:**

.. code:: python

   import utils

   utils.register_value(file="sample", variable="foo", value="bar") # This creates a JSON file.
   data = utils.get_data(file="sample", variable="foo")
   invalid_data = utils.get_data("sample", "non-existant value") # You can do this instead of doing the variable's name.
   print(data)
   print(invalid_data)
   >> bar
   >> None

Collaborators
-------------

This wouldnâ€™t be made possible without these people

1. `BenitzCoding <https://github.com/BenitzCoding>`__

.. |Discord| image:: https://discord.com/api/guilds/886543799843688498/embed.png
   :target: https://discord.gg/5YY3W83YWg
.. |PyPi| image:: https://img.shields.io/pypi/v/cool-utils.svg
   :target: https://pypi.python.org/pypi/cool-utils
.. |Python Version| image:: https://img.shields.io/pypi/pyversions/cool-utils.svg
   :target: https://pypi.python.org/pypi/cool-utils
.. |License| image:: https://img.shields.io/github/license/Senarc-Studios/Cool-Utils?style=plastic
   :target: https://github.com/Senarc-Studios/Cool-Utils/blob/master/LICENSE
.. |Issues| image:: https://img.shields.io/github/issues/Senarc-Studios/Cool-Utils?style=plastic
   :target: https://github.com/Senarc-Studios/Cool-Utils/issues
.. |Forks| image:: https://img.shields.io/github/forks/Senarc-Studios/Cool-Utils?style=plastic
   :target: https://github.com/Senarc-Studios/Cool-Utils/network
.. |Stars| image:: https://img.shields.io/github/stars/Senarc-Studios/Cool-Utils?style=plastic
   :target: https://github.com/Senarc-Studios/Cool-Utils/stargazers


