PyInquirer
PyInquirer copied to clipboard
A Python module for common interactive command line user interfaces
https://github.com/CITGuru/PyInquirer/blob/7637373429bec66788650cda8091b7a6f12929ee/examples/list.py#L54
I ran the test script, and it kept giving me this error. All I had to do was go into `from_dict.py` and go to line `9` and turn it from:...
Need for Python > 3.6 After that the from_dict.py is gone. When using version 3.0.43 (newest) I get the error: ``` from PyInquirer import prompt File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/PyInquirer/__init__.py", line 6, in...
prompt_toolkit version 1.0.14 is compatible with pyinquirer however it breaks the ipython and ipykernel packages as they require version 3.0.39 which causes the following error ` File "C:\Users\Manith\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\pynav-1.0.0-py3.10.egg\pynav\cli_tool.py", line 5,...
This resolves an import error in the collections library when using python 3.10 or higher. ``` ImportError: cannot import name 'Mapping' from 'collections' (/opt/homebrew/Cellar/[email protected]/3.10.6_2/Frameworks/Python.framework/Versions/3.10/lib/python3.10/collections/__init__.py) ```
I used the same code as your password.py example. I want to access that variable so that i can use it in the future. How can i do that?
Some links were broken and some missing.
For https://github.com/CITGuru/PyInquirer/issues/192 We donot need to use prompt.prompt after importing it from the base PyInquirer module, just using prompt does fine. This PR should fix the above examples