Skip to content

Category: python

GEdit Tab Switcher and Closer – Plugin

I was tired to use different shortcuts on each program, so I decided to create a Plugin for GEdit to have the shortcuts that I'm…

Continue reading GEdit Tab Switcher and Closer – Plugin

Change numeric base using Python

Hello, How to change the numeric base of a number? This is a implementation in Python. [code lang="python"] def convert(decimal,newBase,str,letters): if decimal >= newBase: x…

Continue reading Change numeric base using Python

Connect to SSH using Python

Good Night, If you want to execute commands in console using python you can use the pexpect library. You can get it in http://sourceforge.net/projects/pexpect/. To…

Continue reading Connect to SSH using Python