Download / Sync library from iBroadcast on Linux machines
Project description
iBroadcast Download / Sync
This project was born from a need to download my library from iBroadcast onto my linux machine. Only the OSX and Windows app support this functionality. This project uses the existing ibroadcast-python library and extends the iBroadcast
class to add a download_library
method.
In addition to using this as a Python library, it also has a small CLI to help automate doing library downloads.
Usage
This project can be used as both a Python library and CLI.
CLI
Installation
pipx
pipx is available for Linux, OSX, and Windows. Follow the install instructions first for pipx then the following:
pipx install ibroadcast-dl
Usage
To use the CLI, run the ibroadcast-dl
command:
ibroadcast-dl --username ibroadcast@email.tld ~/Music/
This will open a progress bar - if your library is large it'll take several hours to sync. If you connection is slow try turing down the number of tracks it downloads at a time (defaults 50) to something around 10:
ibroadcast-dl -u ibroadcast@email.tld -x 10 ~/Music/
Python Library
The module has the same method sigrnatures and usage as the ibroadcast-python
library with the addition of a download_library
method.
>>> import ibroadcastdl
>>> ib = ibroadcastdl.iBroadcastDL("email", "password")
>>> download_dir = "./Music"
>>> offset = 0
>>> while offset < len(ib.tracks):
... ib.download_library(offset, 50, download_dir)
... offset = offset + 50
This will download the entire library 50 tracks at a time.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ibroadcast_dl-1.1.7.tar.gz
.
File metadata
- Download URL: ibroadcast_dl-1.1.7.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a2b9efff2911a6997f21cea2d85456b8049d39375799fb890f108cb260fcd76 |
|
MD5 | 075c333cfb29f7183617e95e19ea597f |
|
BLAKE2b-256 | 11b15e99d669a2ec3492d112e5f70f3f6027b28399cbfd80623de3e32d8500a2 |
Provenance
File details
Details for the file ibroadcast_dl-1.1.7-py3-none-any.whl
.
File metadata
- Download URL: ibroadcast_dl-1.1.7-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bfda2505f4df940d02315fac20e08036b2be9a1c06bd7577538fab1ba4fcd84 |
|
MD5 | 8734b5117bee765e3fe50f443e568d97 |
|
BLAKE2b-256 | cfb68ed8e0fbc04668947e338eb7fa3c10c884623ec9ae77a083f2035328bde9 |