Hooray Python

I love Python, because it lets me add 15 fields to a MySQL database in about 5 minutes, which is a lot less time than it would have taken to add them manually via the command-line client or PhpMyAdmin:

#!/usr/bin/python
#altertable.py

for i in range(1,6):
print "ALTER TABLE `items` ADD `img%d_title` VARCHAR(255);" % i;
print "ALTER TABLE `items` ADD `img%d_url` VARCHAR(255);" % i;
print "ALTER TABLE `items` ADD `img%d_caption` TEXT;" % i;

Save as `altertable.py` and run it from the shell:

`python altertable.py | mysql -u andy -pmyPassw0rd -h localhost mydatabase`

Not that it would have taken much longer to write in PHP, Perl, or even Java, but it's so *clean* in Python.

Syndicate content

Twitter

  • @ernestkoe basically this script with duration set to 25 minutes, and limited to tracks 3 minutes & under: http://t.co/bupgfBH 2 years 45 weeks ago
  • @ernestkoe has got me digging Pomodoro. I modified one of my iTunes applescripts to make me nice 25 minute playlists. 2 years 45 weeks ago
  • @tommysalami I'm planning to tear it down and make a static site with links to activity streams elsewhere; it's hardly a destination. 2 years 46 weeks ago
  • @tommysalami I think you may be the one person on the internets subscribed to my RSS feed. That was the first thing I've posted all year! 2 years 46 weeks ago
  • Possibly the most simultaneously hilarious and disturbing video you'll watch today. http://sgp.cm/6f9b89 2 years 48 weeks ago

Older

Contact

Andy Chase
(978) 297-6402
andychase [at] gmail.com
GPG/PGP Public Key