Metadata-Version: 2.1
Name: epytech
Version: 0.9
Summary: The python's api for epitech's intra
Home-page: https://github.com/Neotoxic-off/epytch
Author: Neo
Author-email: paul.gardien@epitech.eu
License: MIT
Description: <p align = "center">
            <img alt = "logo" width="374" height="148" src = "https://raw.githubusercontent.com/Neotoxic-off/epytech/master/images/logo.png"/>
        </p>
        
        ## Documentation
        <p align = "left">
            <a href = "https://github.com/Neotoxic-off/epytech/blob/master/DOCUMENTATION.md">Documentation</a>
        </p>
        <p align = "left">
            <a href = "https://intra.epitech.eu/admin/autolog?format=json">Autologin</a>
        </p>
        
        
        ## Install:
        ```
        pip install --upgrade epytech
        ```
        ### Import
        ```PY
        from epytech import session, user, login, notif
        ```
        
        ## Example:
        ```PY
        from epytech import user, session, login, notif
        
        class content:
            # Initialisation of the classes
            user = user.init()
            login = login.init()
            notif = notif.init()
        
            key = session.create("https://intra.epitech.eu/******************")
        
        def loader():
            # Load the content into the classes
            content.user.load(content.key)
            content.login.load(content.key)
            content.notif.load(content.key)
        
        def test():
            i = 0
            loader()
        
            if content.login.search('message') == "Success":
                print("Login Success")
                print("Welcome %s" % content.user.search('login'))
        
                if content.notif.data:
                    if content.notif.len() > 1:
                        print("Your Notifications:\n")
                        while i < content.notif.len():
                            print(content.notif.search(i))
                            i += 1
                    else:
                        print("Your notification: %s" % content.notif.search(0))
            else:
                print("Login Failed")
        
        test()
        ```
        ### Result:
        ```
        Login Success
        Welcome *********@epitech.eu
        You have a notification: Your login time is insufficient (0).
        ```
Platform: UNKNOWN
Requires-Python: >= 3.4
Description-Content-Type: text/markdown
