Below you will find pages that utilize the taxonomy term “python”
Making KDE applications Python 3 friendly
Some more Nepomuk, please
PyKDE4: Queries with Nepomuk
Multiscale bootstrap clustering with Python and R
While reading the statistics for my blog, I noticed that a number of searches looked for hierarchical clustering with Python, which [I covered quite a while ago]({{ site.url }}/2007/11/data-clustering-with-python). Today I’d like to present an updated version which uses more robust techniques.
Taking video snapshots quickly: KDE VLC Snapper
PyKDE4: Retrieve data using KIO
PyKDE4: Tag and annotate files using Nepomuk
OCS and KDE Forums - work continues
Open Collaboration Services and KDE Forums
The world of KIO metadata - checking the HTTP response from a server
Learning by example
Danbooru Client 0.5 is out
Danbooru Client - a client for Danbooru based sites
A while ago I presented [“danbooru2nepomuk”]({{ site.url }}/2009/10/danbooru2nepomuk-a-nepomuk-tagger-for-danbooru-images), a small program to tag images coming from Danbooru-based image boards. Today I want to present the evolution of that program, that is a PyKDE4 client for those boards.
HOWTO: KConfigXT with PyKDE4
If you read around the KDE Techbase, or if you develop KDE applications, you may have heard about KDE’s KConfigXT. This is an extension of KDE’s KConfig, and can be used to generate nice configure dialogs with multiple pages with minimal effort, also taking care of saving and applying settings. In short, something really neat! But there are problems when using it with interpreted language bindings (such as PyKDE, which is the one I use):
- KConfigXT requires an XML file and an INI-like file to be compiled by kconfig_compiler in order to produce C++ files
- There is no such a tool (at least to my knowledge) that does the same job for bindings
So what to do? Either give up on the niceness of KConfigXT, or work around the issue. I chose the latter.
DataMatrix 0.8 is finally out
DataMatrix 0.7 has been released
DataMatrix page up
DataMatrix 0.5
data.frames in Python - DataMatrix
For a long time I have tried to handle text files in Python in the same way that R’s data.frame does - that is, direct access to columns and rows of a loaded text file. As I don’t like R at all, I struggled to find a Pythonic equivalent, and since I found none, I decided to eat my own food and write an implementation, which is what you’ll find below.
QSql vs DB-API?
Gene identifiers
Data clustering with Python
**Notice:**Just now I realized this has been linked to to a Stack Overflow question. I recently wrote a new post that uses a different technique and a combination of R and Python. [Check it out!]({{ site.url }}/2011/05/multiscale-bootstrap-clustering-with-python-and-r)
Following up my recent post, I’ve been looking for alternatives to TMeV. So far I’ve found the R package pvclust and the Pycluster library, part of BioPython. The first one also performs bootstrapping (I’m not sure if it’s similar to what support trees do, but it’s still better than no resampling at all). I’ve found another Python project but it is still too basic to perform what I need.