# taggler-scraper-spotify

Latest version **0.0.4** (published 2019-08-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install taggler-scraper-spotify
pnpm add taggler-scraper-spotify
yarn add taggler-scraper-spotify
bun add taggler-scraper-spotify
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2019-08-17 |
| First published | 2019-08-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 10.4 KB |
| Known vulnerabilities | 0 (+25 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 3 |
| Author | krmax44 |
| Maintainers | krmax44 |

## Links

- npm: https://www.npmjs.com/package/taggler-scraper-spotify
- Repository: https://github.com/krmax44/taggler
- Homepage: https://github.com/krmax44/taggler#readme
- Issues: https://github.com/krmax44/taggler/issues
- npm.io page: https://npm.io/package/taggler-scraper-spotify

## Dependencies (4)

- [conf](https://npm.io/package/conf.md) ^5.0.0
- [axios](https://npm.io/package/axios.md) ^0.19.0
- [dotenv](https://npm.io/package/dotenv.md) ^8.0.0
- [@types/dotenv](https://npm.io/package/@types/dotenv.md) ^6.1.1

## Recent versions

- 0.0.4 (latest) — 2019-08-17
- 0.0.3 — 2019-08-15
- 0.0.2 — 2019-08-15
- 0.0.1 — 2019-08-15

## README

# Taggler

[![Build Status](https://travis-ci.com/krmax44/taggler.svg?branch=master)](https://travis-ci.com/krmax44/taggler)

Taggler is a CLI to quickly equip your local music files with high quality ID3 tags. It supports multiple data sources and ID3 writers.

## Installation and Usage

With `npm`:

```bash
npm i -g taggler # you may need to run it as root, depending on your npm install
taggler "Smash Mouth - All Star.mp3"
```

or run it without installing using `npx`:

```bash
npx taggler "Smash Mouth - All Star.mp3"
```

You can also tag multiple files or directories at once:

```bash
taggler "Cory Wong - The Optimist/" # tag whole directory
taggler . # tag all files in current directory
taggler "Smash Mouth - All Star.mp3" "Cory Wong - Light as Anything.mp3" # tag multiple files
```

## System

Taggler is divided up into scrapers, writers and the Taggler CLI, that communicates with the former ones. Scrapers (like the Spotify scraper) try to find as much metadata about a file, which is then passed to a writer (like the ffmpeg writer) which actually bakes the data into the previously untagged file. This allows for various data sources and infinite customisability.

## Contributing

```bash
# 1. Fork the repo and clone it:
git clone "https://github.com/$USER/taggler.git"
cd taggler
# 2. Install dependencies and link them
yarn
yarn bootstrap
# 3. Create a branch
git checkout -b feat/my-cool-feature
# 4. Begin coding!
code . && exit
# 5. Push and create PR
git push
```

---
_Source: https://npm.io/package/taggler-scraper-spotify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
