{"id":19379859,"url":"https://github.com/sfischer13/python-prompt","last_synced_at":"2025-04-23T19:33:07.346Z","repository":{"id":60721400,"uuid":"41586189","full_name":"sfischer13/python-prompt","owner":"sfischer13","description":":snake: Python library for the validation of user input","archived":false,"fork":false,"pushed_at":"2018-01-07T16:48:39.000Z","size":65,"stargazers_count":4,"open_issues_count":2,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-10T02:43:13.618Z","etag":null,"topics":["library","prompt","python","python-3"],"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/sfischer13.png","metadata":{"files":{"readme":"README.rst","changelog":"HISTORY.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-08-29T08:22:56.000Z","updated_at":"2024-10-01T16:57:19.000Z","dependencies_parsed_at":"2022-10-03T20:03:12.639Z","dependency_job_id":null,"html_url":"https://github.com/sfischer13/python-prompt","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfischer13%2Fpython-prompt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfischer13%2Fpython-prompt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfischer13%2Fpython-prompt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfischer13%2Fpython-prompt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sfischer13","download_url":"https://codeload.github.com/sfischer13/python-prompt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223932087,"owners_count":17227277,"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":["library","prompt","python","python-3"],"created_at":"2024-11-10T09:11:39.353Z","updated_at":"2024-11-10T09:11:39.872Z","avatar_url":"https://github.com/sfischer13.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"=====================\nPython Prompt Package\n=====================\n\n|PyPI Version| |Travis| |Coverage Status| |Documentation Status|\n\n| Prompt and verify user input on the command line.\n| Python 3.3+ and Wheels are supported.\n\nThe project was initiated by Stefan Fischer.\n\n-  `Documentation \u003chttps://readthedocs.org/projects/prompt\u003e`__ is\n   available on PythonHosted.\n-  `Questions \u003cmailto:sfischer13@ymail.com\u003e`__ can be asked via e-mail.\n-  `Changes \u003chttps://github.com/sfischer13/python-prompt/blob/master/CHANGELOG.rst\u003e`__\n   between releases are documented.\n-  `Source code \u003chttps://github.com/sfischer13/python-prompt\u003e`__ is\n   tracked on GitHub.\n-  `Bugs \u003chttps://github.com/sfischer13/python-prompt/issues\u003e`__ can be\n   reported on the issue tracker.\n\nInstall\n-------\n\n|PyPI Python Versions| |PyPI Wheel|\n\nThe package is available on\n`PyPI \u003chttps://pypi.python.org/pypi/prompt\u003e`__:\n\n::\n\n    $ pip install prompt\n\nUse\n---\n\nAn extensive `documentation \u003chttps://readthedocs.org/projects/prompt\u003e`__\nis available.\n\nSome simple use cases:\n\n::\n\n    import prompt\n\n    email = prompt.email()\n\n    # modify default prompt\n    integer = prompt.integer(prompt=\"Please enter a number: \")\n\n    # allow empty response\n    real = prompt.real(empty=True)\n\n    # require a two digit number using a regular expression\n    regex = prompt.regex(\"^\\d\\d$\")\n\nContribute\n----------\n\n| Write a bug report or send a pull request.\n| Other\n  `contributors \u003chttps://github.com/sfischer13/python-prompt/graphs/contributors\u003e`__\n  have done so before.\n\n-  `Roadmap \u003chttps://github.com/sfischer13/python-prompt/blob/master/TODO.rst\u003e`__\n   of planned improvements\n-  `Issues \u003chttps://github.com/sfischer13/python-prompt/issues\u003e`__ that\n   have been reported\n\nLicense\n-------\n\n| Copyright (c) 2015-2017 Stefan Fischer\n| The source code is available under the **MIT License**.\n| See\n  `LICENSE \u003chttps://github.com/sfischer13/python-prompt/blob/master/LICENSE\u003e`__\n  for further details.\n\n.. |PyPI Version| image:: https://img.shields.io/pypi/v/prompt.svg\n   :target: https://pypi.python.org/pypi/prompt\n.. |Travis| image:: https://img.shields.io/travis/sfischer13/python-prompt.svg\n   :target: https://travis-ci.org/sfischer13/python-prompt\n.. |Coverage Status| image:: https://coveralls.io/repos/sfischer13/python-prompt/badge.svg?branch=master\u0026service=github\n   :target: https://coveralls.io/github/sfischer13/python-prompt?branch=master\n.. |Documentation Status| image:: https://readthedocs.org/projects/prompt/badge/?version=latest\n   :target: http://prompt.readthedocs.org/en/latest/?badge=latest\n.. |PyPI Python Versions| image:: https://img.shields.io/pypi/pyversions/prompt.svg\n   :target: https://pypi.python.org/pypi/prompt\n.. |PyPI Wheel| image:: https://img.shields.io/pypi/wheel/prompt.svg\n   :target: https://pypi.python.org/pypi/prompt\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsfischer13%2Fpython-prompt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsfischer13%2Fpython-prompt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsfischer13%2Fpython-prompt/lists"}