Metadata-Version: 1.1
Name: azurlane
Version: 1.1.1
Summary: Unofficial Azur Lane API library made in Python
Home-page: https://github.com/AzurAPI/azurapi-py
Author: August, Spimy
Author-email: august@augu.dev
License: UNKNOWN
Description: Azur Lane API
        =============
        
        |Discord| |Downloads|
        
        Repository for the Python library for the unofficial Azur Lane API
        
        Example
        -------
        
        Importing module and instancing the api
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code:: py
        
            from azurlane.azurapi import AzurAPI
            api = AzurAPI()
        
        Getting ship information
        ~~~~~~~~~~~~~~~~~~~~~~~~
        
        Type: Multilingual
        ^^^^^^^^^^^^^^^^^^
        
        .. code:: py
        
            api.getShip(ship="Enterprise")
        
        or
        
        .. code:: py
        
            api.getShipByName(name="Enterprise")
        
        Type: ID
        ^^^^^^^^
        
        Works with string or integer. Do not use integer if the id is less than
        100 since integers such as 077 is a syntax error in Python
        
        .. code:: py
        
            api.getShip(ship=115)
            api.getShip(ship="115")
        
        or
        
        .. code:: py
        
            # sid stands for "ship id" since id is a reserved function name in Python
            api.getShipById(sid=115)
            api.getShipById(sid="115")
        
        Maintainers
        -----------
        
        -  `August <https://github.com/auguwu>`__
        -  `Spimy <https://github.com/Spimy>`__
        
        In Collaboration With
        ---------------------
        
        -  `synopNode() <https://www.youtube.com/channel/UCEw406qZnsdCEpRgVvCJzuQ>`__
        
        Support Server
        --------------
        
        |image1|
        
        Discord Link: https://discord.gg/aAEdys8
        
        .. |Discord| image:: https://discordapp.com/api/guilds/648206344729526272/embed.png
           :target: https://discord.gg/aAEdys8
        .. |image1| image:: https://discordapp.com/api/guilds/648206344729526272/widget.png?style=banner2
           :target: https://discord.gg/aAEdys8
        .. |Downloads| image:: https://pepy.tech/badge/azurlane
           :target: https://pepy.tech/project/azurlane
        
Keywords: azurlane,azur lane
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
