Search Results

8
votes

Graphing JavaScript Library

Here is my personal shortlist with comments: Flot: +beautiful presets +very easy to use (the hardest was converting ISO datetimes to Javascript dates, which isn't hard at all) +uses j …
1
vote

detecting if a module is imported inside the app engine environment

You could simply use sys.modules to test if a module has been imported (I'm using unicodedata as an example): >>> import sys >>> 'unicodedata' in sys.modules False …