Metadata-Version: 2.1
Name: util-belt
Version: 0.0.7
Summary: A package of differnt utilities
Home-page: https://github.com/kellemNegasi/util_belt
Author: kellem negasi
Author-email: kellemnegasi@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

## utility belt
This is a utility package which can simplify a lot of common and repetitive tasks.<br/>
It contains different utility functions.</br>
to install it use ``` pip install util-belt ``` and `pip` will install the latest version of the package<br/>
### List of functionalities
1. list to text  <br/> to save a list to text file for later use you can do it using the <br/>
```list_to_txt()``` funtion in the `file_utils` module.
   #### example
   ```
   from util_belt.file_utils import list_to_txt

   my_list = [3,5,6,7]
   list_to_txt(my_list , file_dest = './list.txt')

   ```
   `file_dest` parameter is the file path where the list should be saved at. </br>
   By default it is  the current directory and the file name is `list.txt` <br>
   you can change that to any file path you want. the funtion will save your list <br>
   to a file with out worrying about details in file handling.<br>

   **Currently this library can only save simple lists or 1D lists**
2. file from list</br>
   to get a list saved in a txt file use ``` list_from_txt ``` function in the ``` file_utils ``` module <br/>

   #### Example
   ```
   from util_belt.file_utils import list_from_txt

   my_list = list_from_txt('Documents/my_list.txt')

   ```
**Currently this library can only save and retrieve simple lists or 1D lists.<br/> it will inlude more flexiblity and functionalities in the next update** <br/>


if there is any issue or but report https://github.com/kellemNegasi/util_belt


