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…

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…

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…