
August 14th, 2012, 07:57 AM
|
|
Contributing User
|
|
Join Date: Jul 2012
Posts: 39
Time spent in forums: 10 h 49 m 43 sec
Reputation Power: 1
|
|
|
If you trying to run the PERL script directly look at the documentation for subprocess. Be prepared for a little trial and error to get this working.
If it is a website being driven by a PERL script (or any website) you could look at scrapy for example.
To process HTML look at the documentation for HTMLParser (html.parser in Python 3) or try the regular expression module re if that is more appropriate.
The module you need for storing the result in a database will depend upon the database you are using but they have all standardised on a single API so it should make little difference.
|