Metadata-Version: 2.1
Name: wizzi_utils
Version: 6.1.2
Summary: Handy Tools for Developers
Home-page: https://github.com/2easy4wizzi/2021wizzi_utils
Author: Gilad Eini
Author-email: giladEini@gmail.com
License: MIT
Download-URL: https://github.com/2easy4wizzi/2021wizzi_utils/archive/refs/tags/v_6.1.2.tar.gz
Description: # package wizzi utils:  
        ## Installation: 
        ```bash
        pip install wizzi_utils 
        ```
        ## Usage
        ```bash
        import wizzi_utils as wu # improts all that is available 
        ```
        * The above will give you access to all functions and tests that the dependencies modules in them is installed in your 
        python environment.<br />
        * Everything in misc_tools and misc_tools_test must work because when you 'pip install wizzi_utils', setup.py makes sure
        to install the requirements to misc_tools module.  <br />
        * Everything else, e.g. torch_tools, will work only if you have all the modules needed for torch_tools installed.  
          * In torch_tools example, to know what is needed go to:  
            wizzi_utils.torch.\_\_init__.py # for the tools  
            wizzi_utils.torch.test.\_\_init__.py # for the tests and examples  
        
        ## Examples:
        ```bash
        import wizzi_utils as wu
        
        # direct access to the misc_tools module - must work   
        print(wu.misc_tools.to_str(var=1, title='my_int'))
        
        # access to a function in the main module misc_tools via name space 'wu' - must work    
        print(wu.to_str(var=2, title='my_int'))  # notice only wu namespace
          
        # access to a function in the torch module - will work if you have torch and the rest of the modules needed  
        print(wu.tt.to_str(var=3, title='my_int')) # notice wu and tt namespaces. tt for torch tools
          
        # access to a function in the matplotlib module - same rules as torch example above  
        print(wu.pyplt.get_RGB_color(color_str='r'))
          
        # access to a module test  
        wu.algs.test.test_all()  # all tests  
        wu.algs.test.find_centers_test() # specific test  
        wu.test.to_str_test()  # access mist tools tests   
        ```  
              
              
            
Keywords: misc tools,common algorithms,coreset tools,json tools,open cv tools,pyplot tools,socket tools,torch tools
Platform: windows
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
