For URLs that show file trees, such as Pypi packages,
is there a small solid module to walk the URL tree and list it like ls -lR?
I gather (correct me) that there's no standard encoding of file attributes,
link types, size, date ... in html <A attributes
so building a solid URLtree module on shifting sands is tough.
But surely this wheel (Unix file tree -> html -> treewalk API -> ls -lR or find)
has been done?
(There seem to be several spiders / web crawlers / scrapers out there, but they look ugly and ad hoc so far, despite BeautifulSoup for parsing).
|
|
|
|||
|
|
|
|
Apache servers are very common, and they have a relatively standard way of listing file directories. Here's a simple enough script that does what you want, you should be able to make it do what you want. Usage: python list_apache_dir.py
|
||
|
|
|
Turns out that BeautifulSoup one-liners like these can turn <table> rows into Python --
Compared to sysrqb's one-line regexp above, this is ... longer; who said
|
||
|
|
|
|
Others have recommended BeautifulSoup, but it's much better to use lxml. Despite its name, it is also for parsing and scraping HTML. It's much, much faster than BeautifulSoup. It has a compatibility API for BeautifulSoup too if you don't want to learn the lxml API. There's no reason to use BeautifulSoup anymore, unless you're on Google App Engine or something where anything not purely Python isn't allowed. It has CSS selectors as well so this sort of thing is trivial. |
||
|
|
