Metadata-Version: 2.1
Name: valoStatus
Version: 0.0.3
Summary: A python library to check for riot games server status for VALORANT without an API key
Home-page: https://github.com/D3CRYPT360/valStatus
Author: D3CRYPT360
Author-email: lordomega360@gmail.com
License: UNKNOWN
Description: # valoStatus
        A python library to check for riot games server status for **VALORANT** [valorant server status website](https://status.riotgames.com/valorant?locale=en_US)
        
        # Installation
        `pip install valoStatus`
        
        # Example code (we will use NA region as an example)
        
        ### Check if there is an issue with the server
        ```python
        """
        `self.get_status_issue()` would
        return either:
        True == There is an issue
        False == There is no issue
        """
        region = Region("NA")
        if region.get_status_issue() == True:
            # code
        else:
            # code
        ```
        
        ### Check if the Issue is either an incident or a Maintenance
        ```python
        """
        `self.incident_check()` and `self.maintenance_check()` would return:
        True == There is an issue.
        
        **we are not doing False here
        since we already have a check for that
        via `self.get_issue()`**
        """
        region = Region("NA")
        if region.get_issue() == True:
            # code
        else:
            if region.incident_check() == True:
                # code
            elif region.maintenance_check() == True:
                # code 
        ```
        
        ### Incidents
        ```python
        region = Region("NA")
        
        #to get the title of the incident:
        print(region.incident_title())
        
        #to get the date of the incident:
        print(region.incident_date())
        
        #to get the reason of the incident:
        print(region.incident_reason())
        ```
        
        ### Maintenances
        ```python
        region = Region("NA")
        
        #to get the title of the maintenance:
        print(region.maintenances_title())
        
        #to get the date of the maintenance:
        print(region.maintenances_date())
        
        #to get the reason of the maintenance:
        print(region.maintenances_reason())
        ```
        
        # Links
        
        **[PyPi](https://pypi.org/project/valStatus/)**
        **[Github](https://github.com/D3CRYPT360/valStatus)**
        
        # Support
        **[Github Profile](https://github.com/D3CRYPT360)**
        
        DM `@D3crypt360` on Twitter
        
        Change Log
        ==========
        
        0.0.1 (23/12/2020)
        
        - Initial Release
        
        0.0.2 (23/12/2020)
        - Fixed some bugs with the readme
        - Fixed some bugs with Region file
        
        0.0.3 (23/12/2020)
        - Fixed a bug with the readme
Keywords: valorantgaminggamers
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
