Simple Tag Clouds

// simple tagclouds

import math
for t in tags:
  print t.name, t.count, int(math.ceil(5 * math.log(t.count, math.e)))

0 Comments

Post A Comment