A cross-platform command-line tool for discovering, browsing, and downloading music releases from Orpheus.network private tracker.
- Installation
- Quick Start
- Configuration
- Usage
- Platform-Specific Notes
- Features
- Examples
- Troubleshooting
- Security
- Development
- Python: 3.8 or higher
- Operating System: macOS, Windows, or Linux
- Internet Connection: Required for API access
The easiest way to install Orpheus Collage Tools is via pip:
pip install orpheus-collage-toolsAfter installation, verify it works:
orpheus --helpYou should see the help message with available commands.
Run the tool for the first time to set up your configuration:
orpheusThis will:
- Create a configuration directory
- Prompt for your Orpheus credentials
- Validate your API access
- Save secure configuration
Start the interactive menu system:
orpheusUse specific commands directly:
# Search for artist releases
orpheus find-album --artist "The Prodigy" --interactive
# Download torrents from a collage
orpheus download 6936 --prefer-flac
# Manage crates
orpheus crate listOn first run, the tool automatically creates configuration files:
- macOS:
~/.orpheus/config.json - Windows:
%APPDATA%/orpheus/config.json - Linux:
~/.orpheus/config.json
You can also create the configuration file manually:
# Create config directory
mkdir -p ~/.orpheus # Linux/macOS
# or
mkdir %APPDATA%/orpheus # Windows
# Create config file
cat > ~/.orpheus/config.json << EOF
{
"username": "your_orpheus_username",
"password": "your_orpheus_password",
"api_key": "your_orpheus_api_key"
}
EOF- Go to Orpheus User Settings
- Scroll down to the "Access" section
- Copy your API key
- Configuration files are created with owner-only permissions (600)
- Credentials are never logged or stored in plain text outside the config file
- The tool validates credentials before saving
The interactive mode provides a guided menu system:
orpheusAvailable options:
- Find artist albums & releases - Browse artist discographies
- Find collages - Discover curated collections
- Download torrents - Download from specific collages
- Manage crates - Create and manage wishlists
- Load crate and browse - Use saved collections
- Exit
# Interactive search with full results
orpheus find-album --artist "The Beatles" --interactive
# Search for specific album
orpheus find-album --artist "The Beatles" --album "Abbey Road"
# Official releases only
orpheus find-album --artist "The Beatles" --official-only# Find collages featuring an artist
orpheus find-artist-collages "Radiohead"
# Download torrents from collage (REQUIRED: --prefer option)
orpheus download 6936 --prefer-320 # MP3 320 CBR
orpheus download 6936 --prefer-v0 # MP3 V0 VBR
orpheus download 6936 --prefer-flac # FLAC Lossless# List all crates
orpheus crate list
# Create new crate
orpheus crate create "My Favorites"
# Download crate contents
orpheus crate download "My Favorites"Torrents are saved to:
- macOS:
~/Documents/Orpheus/ - Windows:
~/Documents/Orpheus/ - Linux:
~/Documents/Orpheus/
Collage downloads create subfolders like:
~/Documents/Orpheus/collage_6936_Sampled_by_The_Prodigy/
- Uses optimized bash script for best performance
- Full interactive features supported
- Native macOS file permissions
- Configuration stored in
~/.orpheus/
- Uses Python implementation with batch file launcher
- Full feature parity with other platforms
- Configuration stored in
%APPDATA%/orpheus/ - Compatible with Windows 10/11
- Uses Python implementation
- Full feature parity
- Configuration stored in
~/.orpheus/ - Compatible with all major distributions
The tool automatically detects your operating system and uses the appropriate implementation:
- macOS: Bash script execution
- Windows/Linux: Python implementation
- Browse complete artist discographies
- Filter by release type (Albums, EPs, Singles)
- Official vs. unofficial releases
- Interactive browsing with pagination
- Find collages containing specific artists
- Discover music through curated collections
- Search collages by name or keywords
- Browse collage contents before downloading
- Create wishlists while browsing
- Save albums for later download
- Bulk download entire collections
- Organize music discovery workflow
- Multiple format options (320, V0, FLAC)
- Automatic format preference handling
- Batch download from collages
- Progress tracking and error handling
- Interactive menu system
- Color-coded output
- Clear navigation and help
- Cross-platform compatibility
# 1. Install the package
pip install orpheus-collage-tools
# 2. First run setup
orpheus
# 3. Search for an artist
orpheus find-album --artist "Pink Floyd" --interactive
# 4. Create a crate for favorites
orpheus crate create "Classic Rock"
# 5. Download a collage
orpheus download 12345 --prefer-flac
# 6. List your crates
orpheus crate list# Search for specific album across all collages
orpheus find-album --artist "Radiohead" --album "OK Computer"
# Find all collages featuring an artist
orpheus find-artist-collages "Bjork"
# Download with specific format preference
orpheus download 67890 --prefer-320
# Manage multiple crates
orpheus crate create "Electronic"
orpheus crate create "Jazz"
orpheus crate list# Make sure the package is installed
pip install orpheus-collage-tools
# Check if it's in your PATH
which orpheus
# Try running with python -m
python -m orpheus_collage_tools.cli# Delete and recreate config
rm ~/.orpheus/config.json
orpheus # Run setup again# Fix config file permissions
chmod 600 ~/.orpheus/config.json- Ensure you have write permissions to
~/Documents/Orpheus/ - Check your internet connection
- Verify your Orpheus credentials are correct
# Show all available commands
orpheus --help
# Run in interactive mode for guided help
orpheusFor troubleshooting, you can run individual Python scripts:
# Test artist search directly
python -c "from orpheus_collage_tools.lib.find_album_collages import main; main()"
# Check configuration
python -c "from orpheus_collage_tools.core import OrpheusTools; print(OrpheusTools().load_config())"- API keys and passwords are stored locally only
- Configuration files use secure permissions (600)
- No data is transmitted except to Orpheus.network
- Credentials are validated before storage
- All communication uses HTTPS
- API keys are sent in Authorization headers
- No sensitive data is logged
- Cookies are handled securely
- Keep your API key private
- Don't share your configuration files
- Use strong, unique passwords
- Regularly update your credentials if needed
The source code is available on GitHub:
- Repository: https://github.com/brookcs3/Orpheus-CLI
- Issues: https://github.com/brookcs3/Orpheus-CLI/issues
- Fork the repository
- Create a feature branch
- Make your changes
- Test thoroughly
- Submit a pull request
# Clone the repository
git clone https://github.com/cameronbrooks/orpheus-collage-tools.git
cd orpheus-collage-tools
# Install in development mode
pip install -e .
# Run tests
python -m pytest- Python 3.8+
- aiohttp>=3.8.0
- beautifulsoup4>=4.11.0
- requests>=2.28.0
MIT License - see LICENSE file for details.
For issues, questions, or feature requests:
- GitHub Issues: https://github.com/cameronbrooks/orpheus-collage-tools/issues
- PyPI Page: https://pypi.org/project/orpheus-collage-tools/
- Initial release
- Cross-platform support (macOS, Windows, Linux)
- Interactive menu system
- Artist and collage search
- Bulk download functionality
- Crate management system
- Secure configuration handling
- PyPI package distribution
Happy music discovering! π΅β¨