MCPcopy Create free account
hub / github.com/geekcomputers/Python / encrypt_now

Method encrypt_now

encrypter-decrypter-gui.py:172–181  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

170 # ---------- Page1 Button Binding Function ----------
171
172 def encrypt_now(self):
173 user_text = self.user_text.get()
174 if user_text == "":
175 showerror(
176 "Nothing Found", "Please Enter Something In Entry Box To Encrypt...!"
177 )
178 return
179 else:
180 self.decrypted_user_text = self.backend_work("Encrypt", user_text)
181 self.decrypted_text_box.insert(tk.INSERT, self.decrypted_user_text, tk.END)
182
183 # --------------------------------------------------Binding Functions of Page1 End Here
184 # Page2 ------------------>

Callers

nothing calls this directly

Calls 3

backend_workMethod · 0.95
getMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected