{"id":13419399,"url":"https://github.com/tmbo/questionary","last_synced_at":"2025-05-11T03:37:35.817Z","repository":{"id":38197962,"uuid":"159971988","full_name":"tmbo/questionary","owner":"tmbo","description":"Python library to build pretty command line user prompts ✨Easy to use multi-select lists, confirmations, free text prompts ...","archived":false,"fork":false,"pushed_at":"2025-04-25T16:08:45.000Z","size":2053,"stargazers_count":1731,"open_issues_count":61,"forks_count":92,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-05-08T23:44:32.607Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tmbo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-12-01T17:55:17.000Z","updated_at":"2025-05-08T11:26:52.000Z","dependencies_parsed_at":"2024-06-18T12:18:33.368Z","dependency_job_id":"d6abbeca-0795-4b2f-abc2-290907a755d1","html_url":"https://github.com/tmbo/questionary","commit_stats":{"total_commits":475,"total_committers":44,"mean_commits":"10.795454545454545","dds":0.6736842105263158,"last_synced_commit":"c894eeffbeb2f1448a108163998ba95b72a8e32a"},"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmbo%2Fquestionary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmbo%2Fquestionary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmbo%2Fquestionary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmbo%2Fquestionary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tmbo","download_url":"https://codeload.github.com/tmbo/questionary/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253514436,"owners_count":21920330,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest"],"created_at":"2024-07-30T22:01:15.457Z","updated_at":"2025-05-11T03:37:35.772Z","avatar_url":"https://github.com/tmbo.png","language":"Python","funding_links":[],"categories":["Python","Desktop App Development","CLI Development","Python 🐍"],"sub_categories":["Python Toolkit"],"readme":"# Questionary\n\n[![Version](https://img.shields.io/pypi/v/questionary.svg)](https://pypi.org/project/questionary/)\n[![License](https://img.shields.io/pypi/l/questionary.svg)](#)\n[![Continuous Integration](https://github.com/tmbo/questionary/workflows/Continuous%20Integration/badge.svg)](#)\n[![Coverage](https://coveralls.io/repos/github/tmbo/questionary/badge.svg?branch=master)](https://coveralls.io/github/tmbo/questionary?branch=master)\n[![Supported Python Versions](https://img.shields.io/pypi/pyversions/questionary.svg)](https://pypi.python.org/pypi/questionary)\n[![Documentation](https://readthedocs.org/projects/questionary/badge/?version=latest)](https://questionary.readthedocs.io/en/latest/?badge=latest)\n\n✨ Questionary is a Python library for effortlessly building pretty command line interfaces ✨\n\n* [Features](#features)\n* [Installation](#installation)\n* [Usage](#usage)\n* [Documentation](#documentation)\n* [Support](#support)\n\n\n![Example](https://raw.githubusercontent.com/tmbo/questionary/master/docs/images/example.gif)\n\n```python3\nimport questionary\n\nquestionary.text(\"What's your first name\").ask()\nquestionary.password(\"What's your secret?\").ask()\nquestionary.confirm(\"Are you amazed?\").ask()\n\nquestionary.select(\n    \"What do you want to do?\",\n    choices=[\"Order a pizza\", \"Make a reservation\", \"Ask for opening hours\"],\n).ask()\n\nquestionary.rawselect(\n    \"What do you want to do?\",\n    choices=[\"Order a pizza\", \"Make a reservation\", \"Ask for opening hours\"],\n).ask()\n\nquestionary.checkbox(\n    \"Select toppings\", choices=[\"foo\", \"bar\", \"bazz\"]\n).ask()\n\nquestionary.path(\"Path to the projects version file\").ask()\n```\n\nUsed and supported by\n\n[\u003cimg src=\"https://raw.githubusercontent.com/tmbo/questionary/master/docs/images/rasa-logo.svg\" width=\"200\"\u003e](https://github.com/RasaHQ/rasa)\n\n## Features\n\nQuestionary supports the following input prompts:\n \n * [Text](https://questionary.readthedocs.io/en/stable/pages/types.html#text)\n * [Password](https://questionary.readthedocs.io/en/stable/pages/types.html#password)\n * [File Path](https://questionary.readthedocs.io/en/stable/pages/types.html#file-path)\n * [Confirmation](https://questionary.readthedocs.io/en/stable/pages/types.html#confirmation)\n * [Select](https://questionary.readthedocs.io/en/stable/pages/types.html#select)\n * [Raw select](https://questionary.readthedocs.io/en/stable/pages/types.html#raw-select)\n * [Checkbox](https://questionary.readthedocs.io/en/stable/pages/types.html#checkbox)\n * [Autocomplete](https://questionary.readthedocs.io/en/stable/pages/types.html#autocomplete)\n\nThere is also a helper to [print formatted text](https://questionary.readthedocs.io/en/stable/pages/types.html#printing-formatted-text)\nfor when you want to spice up your printed messages a bit.\n\n## Installation\n\nUse the package manager [pip](https://pip.pypa.io/en/stable/) to install Questionary:\n\n```bash\npip install questionary\n```\n✨🎂✨\n\n## Usage\n\n```python\nimport questionary\n\nquestionary.select(\n    \"What do you want to do?\",\n    choices=[\n        'Order a pizza',\n        'Make a reservation',\n        'Ask for opening hours'\n    ]).ask()  # returns value of selection\n```\n\nThat's all it takes to create a prompt! Have a [look at the documentation](https://questionary.readthedocs.io/)\nfor some more examples.\n\n## Documentation\n\nDocumentation for Questionary is available [here](https://questionary.readthedocs.io/).\n\n## Support\n\nPlease [open an issue](https://github.com/tmbo/questionary/issues/new)\nwith enough information for us to reproduce your problem.\nA [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example)\nwould be very helpful.\n\n## Contributing\n\nContributions are very much welcomed and appreciated. Head over to the documentation on [how to contribute](https://questionary.readthedocs.io/en/stable/pages/contributors.html#steps-for-submitting-code).\n\n## Authors and Acknowledgment\n\nQuestionary is written and maintained by Tom Bocklisch and Kian Cross.\n\nIt is based on the great work by [Oyetoke Toby](https://github.com/CITGuru/PyInquirer) \nand [Mark Fink](https://github.com/finklabs/whaaaaat).\n\n## License\nLicensed under the [MIT License](https://github.com/tmbo/questionary/blob/master/LICENSE). Copyright 2021 Tom Bocklisch.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmbo%2Fquestionary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftmbo%2Fquestionary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmbo%2Fquestionary/lists"}