diff --git a/README.md b/README.md
index 973f37774dc22698aaa94a999ade6d868f0285fa..50f7d1c5d68dfe6f941be9261f18822f312ff74a 100644
--- a/README.md
+++ b/README.md
@@ -210,7 +210,6 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
  * PolishTracker
  * Pretome
  * PrivateHD
- * Psytorrents
  * PTFiles
  * Redacted (PassTheHeadphones)
  * RevolutionTT
diff --git a/src/Jackett.Common/Indexers/Psytorrents.cs b/src/Jackett.Common/Indexers/Psytorrents.cs
deleted file mode 100644
index 09d22c12511fa345877dc691f453af864cc4e1a9..0000000000000000000000000000000000000000
--- a/src/Jackett.Common/Indexers/Psytorrents.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using Jackett.Indexers.Abstract;
-using Jackett.Models;
-using Jackett.Services.Interfaces;
-using Jackett.Utils.Clients;
-using NLog;
-
-namespace Jackett.Indexers
-{
-    public class Psytorrents : GazelleTracker
-    {
-        public Psytorrents(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
-            : base(name: "Psytorrents",
-                desc: "Psytorrents (PSY) is a Private Torrent Tracker for ELECTRONIC MUSIC",
-                link: "https://psytorrents.info/",
-                configService: configService,
-                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");
-        }
-    }
-}