{"id":31045900,"url":"https://github.com/colonelpanic8/lastfm-edit","last_synced_at":"2025-09-14T17:47:14.032Z","repository":{"id":305447934,"uuid":"1022911558","full_name":"colonelpanic8/lastfm-edit","owner":"colonelpanic8","description":"Edit last.fm scrobbles programmatically","archived":false,"fork":false,"pushed_at":"2025-08-30T05:02:59.000Z","size":34916,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-30T07:06:09.164Z","etag":null,"topics":["generated","lastfm","music","scraping-tool","scrobble"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/colonelpanic8.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-20T05:40:54.000Z","updated_at":"2025-08-30T05:03:03.000Z","dependencies_parsed_at":"2025-07-20T07:32:56.106Z","dependency_job_id":"ab33f20f-7e4b-4f0c-8ee1-b9b23bb1939d","html_url":"https://github.com/colonelpanic8/lastfm-edit","commit_stats":null,"previous_names":["colonelpanic8/lastfm-edit"],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/colonelpanic8/lastfm-edit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colonelpanic8%2Flastfm-edit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colonelpanic8%2Flastfm-edit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colonelpanic8%2Flastfm-edit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colonelpanic8%2Flastfm-edit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/colonelpanic8","download_url":"https://codeload.github.com/colonelpanic8/lastfm-edit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/colonelpanic8%2Flastfm-edit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275143585,"owners_count":25413091,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-14T02:00:10.474Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["generated","lastfm","music","scraping-tool","scrobble"],"created_at":"2025-09-14T17:47:12.985Z","updated_at":"2025-09-14T17:47:14.016Z","avatar_url":"https://github.com/colonelpanic8.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lastfm-edit\n\n[![Crates.io](https://img.shields.io/crates/v/lastfm-edit.svg)](https://crates.io/crates/lastfm-edit)\n[![Documentation](https://docs.rs/lastfm-edit/badge.svg)](https://docs.rs/lastfm-edit)\n[![CI](https://github.com/colonelpanic8/lastfm-edit/actions/workflows/ci.yml/badge.svg)](https://github.com/colonelpanic8/lastfm-edit/actions/workflows/ci.yml)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nA Rust crate for programmatic access to Last.fm's scrobble editing functionality via web scraping.\n\n📚 **[View API Documentation →](https://docs.rs/lastfm-edit/latest/lastfm_edit/trait/trait.LastFmEditClient.html)**\n\n## Features\n\n- **Authentication**: Login with username/password\n- **Library browsing**: Paginated access to tracks, albums, and recent scrobbles\n- **Bulk editing**: Edit track names, artist names, and album information\n- **Async iterators**: Stream large datasets efficiently\n- **HTTP client abstraction**: Works with any HTTP client implementation\n\n## Quick Start\n\n```rust,no_run\nuse lastfm_edit::{LastFmEditClient, LastFmEditClientImpl, AsyncPaginatedIterator, Result};\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c()\u003e {\n    let http_client = http_client::native::NativeClient::new();\n    let client = LastFmEditClientImpl::login_with_credentials(\n        Box::new(http_client),\n        \"username\",\n        \"password\"\n    ).await?;\n\n    let mut recent_tracks = client.recent_tracks();\n    while let Some(track) = recent_tracks.next().await? {\n        println!(\"{} - {}\", track.artist, track.name);\n    }\n\n    Ok(())\n}\n```\n\n## Core Types\n\n- [`LastFmEditClient`] - Main client trait (see trait docs for all methods and examples)\n- [`LastFmEditClientImpl`] - Concrete client implementation\n- [`Track`], [`Album`] - Music metadata structures\n- [`AsyncPaginatedIterator`] - Streaming paginated data\n- [`ScrobbleEdit`] - Track edit operations\n- [`LastFmError`] - Error types\n\n## Installation\n\n```toml\n[dependencies]\nlastfm-edit = \"4.0.1\"\nhttp-client = { version = \"^6.6.3\", package = \"http-client-2\", features = [\"curl_client\"] }\ntokio = { version = \"1.0\", features = [\"full\"] }\n```\n\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcolonelpanic8%2Flastfm-edit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcolonelpanic8%2Flastfm-edit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcolonelpanic8%2Flastfm-edit/lists"}