├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── dnspod_ddns.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyiw/dnspod_ddns/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyiw/dnspod_ddns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyiw/dnspod_ddns/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyiw/dnspod_ddns/HEAD/config.py -------------------------------------------------------------------------------- /dnspod_ddns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyiw/dnspod_ddns/HEAD/dnspod_ddns.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-daemon 2 | dnspod 3 | docopt 4 | --------------------------------------------------------------------------------