Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I copy from an html file to the clipboard in Python in formatted text?

I'm writting a Word document and I'd like to paste a formatted code-snippets directly from clipboard.

At this moment I am able to write these snippets into an .html file to the harddisk. My goal is to extend my Python script and load this .html file on the clipboard in "formatted text" to directly paste at Word.

Does anyone knows any way to do this in Python?

Thanks in advance.

Sherab

like image 1000
Shaddy Avatar asked Jun 25 '13 13:06

Shaddy


1 Answers

Well, I've found a solution for this.

http://code.activestate.com/recipes/474121-getting-html-from-the-windows-clipboard/

It's work pretty well... if anyone wants more information about the clipboard just take a look here:

http://msdn.microsoft.com/en-us/library/windows/desktop/ms649013(v=vs.85).aspx

Download the pywin32 module and with win32clipboard you can do everything.

like image 120
Shaddy Avatar answered Sep 29 '22 06:09

Shaddy