Metadata-Version: 2.1
Name: survey
Version: 2.0.4
Summary: A simple library for creating beautiful interactive prompts.
Home-page: https://github.com/Exahilosys/survey
License: MIT
Description: ✨ A simple library for creating beautiful interactive prompts.
        
        ![Showcase](/images/showcase.gif)
        
        ```py
        import survey
        
        name = survey.input('Username: ')
        password = survey.password('Password: ')
        actions = ('Call', 'Text', 'Exit')
        index = survey.select(actions, 'Chose an action: ')
        # if index == 0: elif index == 1: else: ...
        contacts = ('Squig', 'Zelan', 'Momo', 'Hamberg', 'Evan', 'Vonnie', 'Dwalon', 'Hacen')
        indexes = survey.select(contacts, 'Select recipients: ', multi = True)
        message = survey.input('Type messsage: ', multi = True)
        confirm = survey.confirm(f'Message is {len(message)} characters long. Send? ', default = True)
        ```
        
        ## Features
        
        - **Pythonic**: friendly interface wrapped around simple functions.
        - **Lightweight**: independent of any other prompt or visual libraries.
        - **Adaptable**: works with any string formatting and window size.
        - **Extensive**: packed with tweaks and features for any situation.
        
        ## Installing
        
        ```
          pip3 install survey
        ```
        
        ## Links
        
        - Greatly inspired by [AlecAivazis's GoLang](https://github.com/AlecAivazis/survey) library.
        
        Suggestions and contributions are greatly appreciated!
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: docs
