Metadata-Version: 2.1
Name: discord-ext-forms
Version: 2.6.10
Summary: Easy forms and surveys for discord.py.
Home-page: https://github.com/isigebengu-mikey/discord-ext-forms
Author: Mikey B
Author-email: mikey@mikeyo.ml
License: MIT
Description: # discord-ext-forms
        <!-- ![Downloads](https://img.shields.io/github/downloads/isigebengu-mikey/discord-ext-forms/total) -->
        [![Documentation Status](https://readthedocs.org/projects/discord-ext-forms/badge/?version=latest)](https://discord-ext-forms.readthedocs.io/en/latest/?badge=latest)
        [![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](https://github.com/isigebengu-mikey/discord-ext-forms/LICENSE)
        [![PR's Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)
        [![Downloads](https://static.pepy.tech/personalized-badge/discord-ext-forms?period=month&units=international_system&left_color=grey&right_color=blue&left_text=Downloads)](https://pypi.org/project/discord-ext-forms)
        [![Code of Conduct](https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat)](https://github.com/isigebengu-mikey/discord-ext-forms/CODE_OF_CONDUCT.md)
        ![GitHub last commit](https://img.shields.io/github/last-commit/google/skia.svg?style=flat)
        [![Open Source](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://opensource.org/)
        
        
        
        
        ### An easier way to make forms and surveys in discord.​py.
        This module is a very simple way to ask questions and create complete forms in discord.py without using an entire 30 lines!
        
        ## Example:
        ```py
        from discord.ext.forms import Form
        from discord.ext import commands
        bot = commands.Bot(command_prefix="!")
        
        @bot.command()
        async def testform(ctx):
            form = Form(ctx,'Title')
            form.add_question('Question 1')
            form.add_question('Question 2')
            form.add_question('Question 3')
            result = await form.start()
            return result
        
        
        >> [{'Question 1','user input'},{'Question 2','user input'},{'Question 3','user input'}]
        ```
        ![Example GIF](https://mikey.has-no-bra.in/eWrLkN.gif)
        Using this module, you can make a 3 question form with only 5 lines of code.
        
        ## Links
        ### [How To Contribute](contribute.md)
        ### [Changelog](CHANGELOG.md)
        ### [Code of Conduct](CODE_OF_CONDUCT.md)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Communications :: Chat
Classifier: Intended Audience :: Developers
Requires-Python: >=3.7
Description-Content-Type: text/markdown
