Thomas Kluyver
Thomas Kluyver
I've refined the tool I'm working on a bit more, and I thought that a longer list of stdlib modules it's currently missing might be useful for testing: https://gist.github.com/takluyver/ddf61f88ad84ca458cf073f67a656019 It's...
Any progress? Do you want me to try to have a look at this?
If anyone's curious what I'm using this for, I'm trying to capture the modules loaded by an application, and then group them according to where they came from: https://pypi.python.org/pypi/kartoffel
Gut feeling on a quick glance: bad clever. It feels like entrypoint names should be identifiers, not strings you parse meaning out of. If you want to register both simple...
Presumably you'd combine that with some sort of priority system, so a specialised high-performance png driver could take priority over a more generic image library (as a hypothetical example)? At...
I'd guess you'd identify the compatible drivers through entrypoints, which should be a small subset of the full list, then import all of those to compare their priority. That way,...
Desktop Linux also has a convention for using non-standard mimetypes to represent URL protocols, like `x-scheme-handler/http` for `http://` - just in case you're looking for a way to represent URL...
It's addressed to the tool used to *build* the package. When you install something with pip and there isn't a wheel ready for it to use, it invokes a backend...
I don't know Angular at all, but from what I know of HTML and JS, something like this would usually be done with a regular `` link, and a Javascript...
#79 is my attempt at fixing this.