Skip to content

Instantly share code, notes, and snippets.

@RakeshChouhan
Created September 14, 2019 18:11
Show Gist options
  • Save RakeshChouhan/8e6a5597533484a2039fbed1cf10337e to your computer and use it in GitHub Desktop.
Save RakeshChouhan/8e6a5597533484a2039fbed1cf10337e to your computer and use it in GitHub Desktop.
Register config file with the abbreviation
import keyboard as k
f = open('config.txt','r')
records = f.read()
recs = records.split('\n')
for i in recs:
if(i != ''):
data = i.split(':')
k.add_abbreviation(data[0],data[1])
print(data[0])
f.close()
@@:myemail.com
@help:stackoverflow.com
@fb:facebook.com
@lkd:linkedin.com
@ut:youtube.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment