Lua is a cool language, light-weight and extremely fast!
But the point is: Is performance so important for those
task you mentioned?
- Renaming a bunch of files
- Download some files from the web
- Webscraping
You write those program once, and run them once, too, maybe.
Why you care performance so much about a run-once program?
For example:
- Cost 3 hours to write a C/C++ program, to handle data once, the program will take 1 hour to run.
- Cost 30 Minute to write a Python program to handle data once, the program will take 10 hours to run.
If you choose one, your save the time to run the program,
but you cost your time to develop the program.
On the other hand, if you choose two, you waste time to run
the program, but you can do other things when the program is
running. How about play World of Warcraft, kill monsters
with your warlock? Eat my D.O.T! :P
That's it! Although Lua is not so difficult to write, but
however, everything about Lua is designed to be efficient.
And what's more, there is little modules for Lua, but there
is so many modules for Python. You don't want to port a C
library for Lua just for a run-once program. Instead, you
will choose Python and use those module to achieve your task
easily.
FYI: Actually, I have tried to use Lua to do webscraping,
but finally, I realized that why I have to care performance
so much about language? The bottleneck of webscraping is
not on performance of language. The bottleneck is on
network I/O, HTML parsing and multitasking. All I have to do
is to make sure the program works, and find the bottleneck.
So finally, I chose Python rather than Lua. There is so
many excellent Python modules, I have no reason to build my
own.
According to my experience about webscraping, I choice
Twisted for network I/O and lxml for html parsing as backend
of my webscraping program. What's more, I refine my backend
program for webscraping as a open source Python module
project.
WebChuan
You can try it, if you are interested in webscraping :P
Hope this would be helpful.