├── .envrc ├── .gitignore ├── LICENSE ├── README.md ├── config_sample.ini ├── lastfm-all_favorite_tracks.py ├── lastfm-artists-similar_bs4.py ├── lastfm-artists_by_genre_bs4.py ├── lastfm-artists_by_genre_pylast.py ├── lastfm-artists_infos.py ├── lastfm-complete_timeline.py └── shell.nix /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | dotenv 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/README.md -------------------------------------------------------------------------------- /config_sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/config_sample.ini -------------------------------------------------------------------------------- /lastfm-all_favorite_tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/lastfm-all_favorite_tracks.py -------------------------------------------------------------------------------- /lastfm-artists-similar_bs4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/lastfm-artists-similar_bs4.py -------------------------------------------------------------------------------- /lastfm-artists_by_genre_bs4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/lastfm-artists_by_genre_bs4.py -------------------------------------------------------------------------------- /lastfm-artists_by_genre_pylast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/lastfm-artists_by_genre_pylast.py -------------------------------------------------------------------------------- /lastfm-artists_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/lastfm-artists_infos.py -------------------------------------------------------------------------------- /lastfm-complete_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/lastfm-complete_timeline.py -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/lastfm-scraper/HEAD/shell.nix --------------------------------------------------------------------------------