Tag Archives: import

How to Import/Export Your Wordpress Blogroll… er, Your Links

It’s not immediately apparent how to import/export the links in your Wordpress blogroll. One would expect that the import/export tool, used to backup/restore Wordpress posts and pages would handle this functionality as well. But the import/export tool has many options. You need to select the Blogroll import option (located near the top of the list) [...]
Posted in Programming, Wordpress | Also tagged , , , , , | Leave a comment

Python Zlib Compress DeCompress

import zlib regular_string = 'this is my string' compressed_string = zlib.compress(regular_string) decompressed_string = zlib.decompress(compressed_string) print compressed_string print decompressed_string
Posted in Python | Also tagged , , | Leave a comment