项目作者: jnlon

项目描述 :
Recursive downloader for the gopher protocol
高级语言: Python
项目地址: git://github.com/jnlon/gopherdl.git
创建时间: 2017-01-17T02:39:33Z
项目社区:https://github.com/jnlon/gopherdl

开源协议:GNU General Public License v3.0

下载


gopherdl

gopherdl is a Python3 program for downloading files and menus over the gopher
protocol. It is similar to wget in terms of commandline options and basic
features.

Usage Examples

Download the index page of gopher.floodgap.com:

./gopherdl.py gopher.floodgap.com

Recursively download all files and menus on gopher.floodgap.com:

./gopherdl.py -r gopher.floodgap.com

Recursively download just menus on gopher.floodgap.com:

./gopherdl.py -r -m gopher.floodgap.com

etc

To see a list of options, run

./gopherdl.py -h

Why

It takes forever to manually traverse every menu on a large gopher server, so
hopefully this tool will make content discovery easier.

And, to my surprise, there doesn’t seem to exist a wget-equivalent for the
gopher protocol, how strange! Hopefully gopherdl fills the gap.