Follow the tab to create a completion method under the python command line

Source: Internet
Author: User

Follow the tab to create a completion method under the python command line

This method is only tested on centos6 and tested on other systems.

1. Create a hidden file named. pythonstartup in the user's home directory and write the following content:

# Python startup file

Import readline

Import rlcompleter

Import atexit

Import OS

# Tab completion

Readline. parse_and_bind ('tab: complete ')

# History file

Histfile = OS. path. join (OS. environ ['home'], '. pythonhistory ')

Try:

Readline. read_history_file (histfile)

Handle t IOError:

Pass

Atexit. register (readline. write_history_file, histfile)

Del OS, histfile, readline, rlcompleter

Note: Do not write the above format incorrectly !!!

2. Import an environment variable to the System

Here, I only import a PYTHONSTARTUP environment variable in the home directory of linux. The method is as follows:

# Echo "export PYTHONSTARTUP = ~ /. Pythonstartup ">> ~ /. Bashrc

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.