Metadata-Version: 2.1
Name: alertnow-python
Version: 1.3.3
Summary: This package used for logging information and errors.
Home-page: https://gitlab.com/log-collector/alertnow-phyton
Author: Tabriz Gulmammadov
Author-email: gulmammadovtabriz@gmail.com
License: MIT
Download-URL: https://gitlab.com/log-collector/alertnow-phyton/-/archive/main/alertnow-phyton-main.tar.gz
Description: # AlertNow Python
        This package used for logging information or errors.
        
        #Installation
        ```pip install AlertNow-Python```
        
        #How to use it?
        First, you need to register with ```sign-up``` remote API and 
        get the api key on the site.
        After, you must initialize connection using ```set_api_key``` and you can initialize host, user and tags data using ```set_host```, ```set_user```, ```set_tag``` method.
        And you can use ```info``` or ```error``` methods.
        
        #Example
        ```angular2html
        from logger.src.logger import set_host, set_api_key, set_user, set_tag, info, error
        from logger.src.common.dto.user import User
        from logger.src.common.dto.userGeo import UserGeo
        import jsonpickle
        
        def execute_method():
            set_host('http://localhost:8080')
            set_api_key('b4984c8de7f14b2f86f8e036456fd60c')
            set_tag('os.name', 'python OS')
            set_user(User(
                "13213231",
                "111.11.1.11",
                UserGeo(
                    "1044",
                    "Baku",
                    "Gadabay"
                )
            ))
        
            response = info('hi from python env')
            print(response.status_code)
            print(jsonpickle.encode(response))
        
        execute_method()
        ```
        
        
Keywords: Log,Logger,AlertNow
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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
