Metadata-Version: 2.1
Name: mohammed-way2
Version: 1.1
Summary: A Docker and AWS utility package
Home-page: UNKNOWN
Author: Mohammed
Author-email: mohammed.s@way2online.co.in
License: UNKNOWN
Description: # mypackage
        
        A testing package for **Digital Kites** processes.
        
        ## Installation
        
        Make sure you have [python3](http://nodejs.org/) and [pip](https://www.npmjs.com/) installed.
        
        ```sh
        pip install mohammed_way2
        ```
        
        
        ## Usage
        
        ```sh
        Importing:
           import mohammed_way2 
        
        Create instance of 'Myclass' in mohammed_way2 module
           name = "Mohammed" #name should be required
           colorObj = mohammed_way2.Myclass(name) 
        
        To get help
            colorObj.help()
        
        Calling methods
           requirements = {
            "foreground":"red",
            "background":"green",
            "extra":"underline" 
           }
           #if you pass requirements={ } it will say back in the default color
           colorObj.sayHai(requirements)
                      (or)
           colorObj.sayBye(requirements)
        
        To watch options available for requirements
             colortObj.optionsAvailable()
        ```
        
        #### How to include in your process:
        
        ```sh
        import mohammed_way2
        name = "Mohammed" #your name
        colorObj = mohammed_way2.Myclass(name)
        # colorObj.help()
        requirements = {
            "foreground":"red",
            "background":"blue",
            "extra":"underline" 
        }
        # you can pass requirements = {}
        colorObj.sayHai(requirements)
        colorObj.sayBye(requirements)
        # colorObj.optionsAvailable()
        
        ```
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Python: >=3
Description-Content-Type: text/markdown
