diff --git a/README.md b/README.md index f7b18b90e..cb48c9c04 100644 --- a/README.md +++ b/README.md @@ -139,6 +139,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * PolishSource * Pretome * PrivateHD + * Psytorrents * PTFiles * QcTorrent * Redacted (PassTheHeadphones) diff --git a/src/Jackett/Indexers/Psytorrents.cs b/src/Jackett/Indexers/Psytorrents.cs new file mode 100644 index 000000000..e23515138 --- /dev/null +++ b/src/Jackett/Indexers/Psytorrents.cs @@ -0,0 +1,29 @@ +using Jackett.Models; +using NLog; +using Jackett.Services; +using Jackett.Utils.Clients; +using Jackett.Indexers.Abstract; + +namespace Jackett.Indexers +{ + public class Psytorrents : GazelleTracker, IIndexer + { + public Psytorrents(IIndexerManagerService indexerManager, IWebClient webClient, Logger logger, IProtectionService protectionService) + : base(name: "Psytorrents", + desc: null, + link: "https://psytorrents.info/", + indexerManager: indexerManager, + logger: logger, + protectionService: protectionService, + webClient: webClient + ) + { + Language = "en-us"; + Type = "private"; + + AddCategoryMapping(1, TorznabCatType.Audio, "Music"); + AddCategoryMapping(2, TorznabCatType.Movies, "Movies"); + AddCategoryMapping(3, TorznabCatType.PC0day, "App"); + } + } +} \ No newline at end of file diff --git a/src/Jackett/Jackett.csproj b/src/Jackett/Jackett.csproj index 79d9fcef1..9147e836f 100644 --- a/src/Jackett/Jackett.csproj +++ b/src/Jackett/Jackett.csproj @@ -183,6 +183,7 @@ +