Getting Started
This guide will help you quickly get started with Magneto. In just a few minutes, you'll be able to start batch converting torrent files.
Prerequisites
Before you begin, make sure you have:
Python 3.7+ installed
bashpython --version # or python3 --versionMagneto installed
bashpip install magneto-cli
Simplest Usage
1. Convert a Single File
bash
magneto file.torrentThis will:
- Read the
file.torrentfile - Generate a magnet link
- Save results to
magnet_links.txt
2. Convert All Files in a Folder
bash
magneto folder/This will:
- Search for all
.torrentfiles in thefolder/directory - Convert them in batch
- Save results to
folder/magnet_links.txt
Viewing Results
After conversion, you can:
View the output file
- By default, results are saved in
magnet_links.txt - The file contains complete conversion information
- By default, results are saved in
Use standard output
bashmagneto folder/ --stdoutResults will be printed directly to the terminal
Get links only
bashmagneto folder/ --stdout -f links_onlyOnly output magnet links for easy copying
Common Command Examples
Recursive Search
bash
magneto folder/ -rOutput JSON Format
bash
magneto folder/ -f jsonInclude Tracker Information
bash
magneto folder/ --include-trackersVerbose Output Mode
bash
magneto folder/ -vNext Steps
- Installation Guide - Learn detailed installation methods
- Usage Guide - Learn more advanced features
- API Reference - View complete API documentation