codecrafters-io / build-your-own-x

Master programming by recreating your favorite technologies from scratch.
https://codecrafters.io
302.11k stars 28.34k forks source link

Build your own clipboard manager #295

Closed prashantgupta24 closed 5 years ago

prashantgupta24 commented 5 years ago

Main programming language

Python

Tutorial title

How to create your own clipboard manager using python and Tkinter

Tutorial URL

https://medium.com/@prashantgupta24/how-to-create-your-own-clipboard-manager-using-python-and-tkinter-e693aa27fffc

Category

NetOpWibby commented 5 years ago

Where’s the URL?

prashantgupta24 commented 5 years ago

Whoops. My bad. I had added it to the PR but forgot in the issue. Added it now.

danistefanovic commented 5 years ago

Hey Prashant, thanks a lot for your submission! Unfortunately, I don't think your tutorial fits in this repo because it lacks a little depth. All the heavy lifting is done by pyperclip. But thanks anyway!

prashantgupta24 commented 5 years ago

Would it help if I used Tkinter's built in clipboard handler functions? All pyperclip does is copy from and paste to the clipboard. Tkinter has that functionality built in, I can replace pyperclip with that.

Also I can add the second part of the tutorial which adds more functionality to the application.

Let me know if either one of the steps can help make my application fulfil the requirements.