An automized btorrent downloader for downloading animate from https://dmhy.org
This config file will contain the information about what animate you want to subscribe, and what interpretation team you prefer(as id), the prefered pattern to extract episode from the title.
example:
{
"租借女友":
{
"CompletedEpisodes": [
1,
2,
3,
4,
6,
5
],
"PreferTeamIds": [],
"PreferParser": ""
}
}
GOAnimateRestoreAutomator also support to send notification after every time animate been downloaded newly. Currently, the notificator only support using smtp mail service to do this task.
example:
{
"PublisherAccount": "publisher@example.com",
"PublisherPassword": "publisher_password",
"SmtpDomain": "mail.example.com",
"SmtpServiceUrl": "mail.exmaple.com:587",
"MailList": [
"subscriber1@example.com",
"subscriber2@example.com",
"subscriber3@example.com"
]
}
- Follow the instructions at golang official document to install golang.
- Created your own
AnimateRequestConfig
andMailConfig
.
$ go run github.com/FATESAIKOU/GOAnimateRestoreAutomator \
[the path to restore the animate] \
[the path to put the error log (but currently not used)] \
[your AnimateRequestConfig file] \
[your MailConfig file]