https://github.com/murattatar/steemit-delegation-control
I don't have 64 bit windows and this situation creates problem for me. For example I can't install steem-pyhon or orher good modules that working on 64bit.
Recently,
When I looked at my wallet I saw it was a minus. I made a delegation, but i could not remember.
I looked for a code that does not require 64bit. I could not see.
I decided to write code that work on 32bit with selenium
Python, Selenium, Tkinter
Notice:
// select requests or selenium.
// If html element code not seen in page source (ctrl+u)
// mean, air elements created via script, we can't use requests
way = 'sel' # or 'req'
We start to run DelegationControl() function with Tkinter Button.
..
def Startd():
username = ReadUser()
print "started"
DelegationControl(username)
..
''' ## Windows Creating ################### '''
delegationbox = Tk()
delegationbox.iconbitmap(default='ico.ico')
delegationboxTitle = delegationbox.title("Steemit Delegation Control v1.0 -alfa")
en = 530; by = 345
''' #secreen size '''
sw = delegationbox.winfo_screenwidth()
sh = delegationbox.winfo_screenheight()
x = (sw-en)/2+7
y = (sh-by)/2-102
go = str(en) + "x" + str(by) + "+" + str(x) + "+" + str(y)
delegationbox.geometry(go)
delegationbox["bg"] = "#15151A"
delegationbox.resizable(width=FALSE, height=FALSE)
photo = PhotoImage(file="back.gif")
label = Label(image=photo)
label.place(x=0, y=0)
userBox = Entry(delegationbox, font=("Tahoma",12), fg="#70e4b8", bg="#15151A")
userBox.place(x=130,y=60,height=38, width=145)
userBox.insert(0, ' UserName?')
userBox.bind('', BoxPlace)
symimage1 = ImageTk.PhotoImage(file="start.gif")
startBtn = Button(image=symimage1,command= Startd); startBtn.place(x=290, y=60)
var = StringVar()
var.set('Enter your UserName and click to Start. (be patient)')
strBox = Label(delegationbox, textvariable = var,
font=("Tahoma",11), fg="#70e4b8", bg="#15151A")
strBox.place(x=0, y=305,height=37, width=530)
This is very practical
Yey! It's open source (w MIT License)
If you want contribute to this project [eg. for speed] or my other steemit projects;
https://github.com/murattatar?tab=repositories
you can write comment here or github or contact me via discord (@MuratTatar#7991 )