mgoldwasser
mgoldwasser

Reputation: 15404

How do you set up autocompletion and code suggestions in python shell?

I saw the following coding gif, which depicts a user typing commands (e.g. import) and a pop up message would describe the usage for that command.

How can I set up something similar?gif depicting python shell with automatic code usage

Upvotes: 0

Views: 518

Answers (2)

Roland Smith
Roland Smith

Reputation: 43495

Code editors like vim (with jedi or python-mode) or emacs and integrated development environments like pycharm can offer the same functionality.

Upvotes: 1

OneCricketeer
OneCricketeer

Reputation: 191725

According to the github issues in the repo of that gif, the video was taken using bpython

Source: https://github.com/tqdm/tqdm/issues/67

Upvotes: 3

Related Questions