@tyleretters/discography 2.1.8 → 2.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/dist/discography.d.ts +33 -0
- package/dist/discography.yml +45 -1
- package/dist/index.es.js +76 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,6 +18,19 @@
|
|
|
18
18
|
- `source venv/bin/activate`
|
|
19
19
|
- `pip install -r requirements.txt`
|
|
20
20
|
|
|
21
|
+
## Adding a Compilation
|
|
22
|
+
|
|
23
|
+
```zsh
|
|
24
|
+
cd src && source venv/bin/activate
|
|
25
|
+
python3 scrape_bandcamp.py <bandcamp_url> \
|
|
26
|
+
--my-artist "Your Artist Name" \
|
|
27
|
+
--project "Your Project Name" \
|
|
28
|
+
--role Artist \
|
|
29
|
+
--add
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Review the prepended entry in `src/discography.yml`, then build and publish as normal.
|
|
33
|
+
|
|
21
34
|
## Updating & Publishing
|
|
22
35
|
|
|
23
36
|
### One Shot
|
package/dist/discography.d.ts
CHANGED
|
@@ -361,4 +361,37 @@ export declare const discography: ({
|
|
|
361
361
|
id: string;
|
|
362
362
|
slug?: undefined;
|
|
363
363
|
trackIds?: undefined;
|
|
364
|
+
} | {
|
|
365
|
+
title: string;
|
|
366
|
+
project: string;
|
|
367
|
+
released: string;
|
|
368
|
+
type: string;
|
|
369
|
+
format: string;
|
|
370
|
+
role: string;
|
|
371
|
+
label: string;
|
|
372
|
+
mp3: boolean;
|
|
373
|
+
wav: boolean;
|
|
374
|
+
tracks: {
|
|
375
|
+
number: number;
|
|
376
|
+
artist: string;
|
|
377
|
+
title: string;
|
|
378
|
+
length: string;
|
|
379
|
+
id: string;
|
|
380
|
+
}[];
|
|
381
|
+
streams: {
|
|
382
|
+
platform: string;
|
|
383
|
+
url: string;
|
|
384
|
+
id: string;
|
|
385
|
+
}[];
|
|
386
|
+
notes: any;
|
|
387
|
+
credits: string;
|
|
388
|
+
project_slug: string;
|
|
389
|
+
release_slug: string;
|
|
390
|
+
cover_url: string;
|
|
391
|
+
id: string;
|
|
392
|
+
slug?: undefined;
|
|
393
|
+
trackIds?: undefined;
|
|
394
|
+
mp3_url?: undefined;
|
|
395
|
+
wav_url?: undefined;
|
|
396
|
+
monospaceNotes?: undefined;
|
|
364
397
|
})[];
|
package/dist/discography.yml
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
- "The Vonyich Manuscript by Legiac"
|
|
21
21
|
- "Sleepygirl 4 by Yagya"
|
|
22
22
|
- "Fr3sh by Kareem Lotfy"
|
|
23
|
-
- "Pop 4 by
|
|
23
|
+
- "Pop 4 by Gas"
|
|
24
24
|
tracks:
|
|
25
25
|
- number: 1
|
|
26
26
|
title: Incendiary Nocturne
|
|
@@ -2506,6 +2506,50 @@
|
|
|
2506
2506
|
Photographs from my trip to Petalying Jaya, Malaysia, 2017.
|
|
2507
2507
|
Engineered by Tyler Etters, 2019.
|
|
2508
2508
|
|
|
2509
|
+
- title: Synergy Beat Music, Volume 1
|
|
2510
|
+
project: Synergy Beat
|
|
2511
|
+
released: 02018-10-31
|
|
2512
|
+
type: Compilation
|
|
2513
|
+
format: Digital
|
|
2514
|
+
role: Principal Musician
|
|
2515
|
+
label: Synergy Beat
|
|
2516
|
+
mp3: false
|
|
2517
|
+
wav: false
|
|
2518
|
+
tracks:
|
|
2519
|
+
- number: 1
|
|
2520
|
+
artist: The Future World Neural Net
|
|
2521
|
+
title: Synergy Beat Intro Credits
|
|
2522
|
+
length: 00:00:50
|
|
2523
|
+
- number: 2
|
|
2524
|
+
artist: キル ナイト
|
|
2525
|
+
title: Revenge Complex Lulu Theme
|
|
2526
|
+
length: 00:02:12
|
|
2527
|
+
- number: 3
|
|
2528
|
+
artist: Lavender Stranger
|
|
2529
|
+
title: Ambient Noir
|
|
2530
|
+
length: 00:02:31
|
|
2531
|
+
- number: 4
|
|
2532
|
+
artist: Bio Mint
|
|
2533
|
+
title: Peach Panic
|
|
2534
|
+
length: 00:02:22
|
|
2535
|
+
- number: 5
|
|
2536
|
+
artist: The Infinity Tigers
|
|
2537
|
+
title: Outpost UXB-1139
|
|
2538
|
+
length: 00:01:04
|
|
2539
|
+
- number: 6
|
|
2540
|
+
artist: Shock Model Duo
|
|
2541
|
+
title: DREAMROAD
|
|
2542
|
+
length: 00:10:32
|
|
2543
|
+
- number: 7
|
|
2544
|
+
artist: The Future World Neural Net
|
|
2545
|
+
title: Synergy Beat Closing Credits
|
|
2546
|
+
length: 00:00:58
|
|
2547
|
+
streams:
|
|
2548
|
+
- platform: Bandcamp
|
|
2549
|
+
url: https://synergybeat.bandcamp.com/album/synergy-beat-music-volume-1
|
|
2550
|
+
notes: null
|
|
2551
|
+
credits: All music pasteurized by Tyler Etters.
|
|
2552
|
+
|
|
2509
2553
|
- title: reverence
|
|
2510
2554
|
project: tyler etters & the northern information movement
|
|
2511
2555
|
released: 02017-12-22
|
package/dist/index.es.js
CHANGED
|
@@ -22,7 +22,7 @@ const e = [
|
|
|
22
22
|
"The Vonyich Manuscript by Legiac",
|
|
23
23
|
"Sleepygirl 4 by Yagya",
|
|
24
24
|
"Fr3sh by Kareem Lotfy",
|
|
25
|
-
"Pop 4 by
|
|
25
|
+
"Pop 4 by Gas"
|
|
26
26
|
],
|
|
27
27
|
tracks: [
|
|
28
28
|
{
|
|
@@ -4476,6 +4476,81 @@ watch the recording of CIPHER SUITE (demo) at: https://www.twitch.tv/videos/9644
|
|
|
4476
4476
|
mp3_url: "https://d107e1o0dn11sc.cloudfront.net/they-became-what-they-beheld/ep1/ep1-mp3.zip",
|
|
4477
4477
|
id: "427cc1165076ec9eaeb68f427ca0b04b"
|
|
4478
4478
|
},
|
|
4479
|
+
{
|
|
4480
|
+
title: "Synergy Beat Music, Volume 1",
|
|
4481
|
+
project: "Synergy Beat",
|
|
4482
|
+
released: "02018-10-31",
|
|
4483
|
+
type: "Compilation",
|
|
4484
|
+
format: "Digital",
|
|
4485
|
+
role: "Principal Musician",
|
|
4486
|
+
label: "Synergy Beat",
|
|
4487
|
+
mp3: !1,
|
|
4488
|
+
wav: !1,
|
|
4489
|
+
tracks: [
|
|
4490
|
+
{
|
|
4491
|
+
number: 1,
|
|
4492
|
+
artist: "The Future World Neural Net",
|
|
4493
|
+
title: "Synergy Beat Intro Credits",
|
|
4494
|
+
length: "00:00:50",
|
|
4495
|
+
id: "94547d10d6c4474581e27608b88f7ff8"
|
|
4496
|
+
},
|
|
4497
|
+
{
|
|
4498
|
+
number: 2,
|
|
4499
|
+
artist: "キル ナイト",
|
|
4500
|
+
title: "Revenge Complex Lulu Theme",
|
|
4501
|
+
length: "00:02:12",
|
|
4502
|
+
id: "cce32f501c3f30c385bc71373da667f3"
|
|
4503
|
+
},
|
|
4504
|
+
{
|
|
4505
|
+
number: 3,
|
|
4506
|
+
artist: "Lavender Stranger",
|
|
4507
|
+
title: "Ambient Noir",
|
|
4508
|
+
length: "00:02:31",
|
|
4509
|
+
id: "155924e82647d15f1195c5aed890c132"
|
|
4510
|
+
},
|
|
4511
|
+
{
|
|
4512
|
+
number: 4,
|
|
4513
|
+
artist: "Bio Mint",
|
|
4514
|
+
title: "Peach Panic",
|
|
4515
|
+
length: "00:02:22",
|
|
4516
|
+
id: "1d0dceb21c342b1b4eeb856e1be92517"
|
|
4517
|
+
},
|
|
4518
|
+
{
|
|
4519
|
+
number: 5,
|
|
4520
|
+
artist: "The Infinity Tigers",
|
|
4521
|
+
title: "Outpost UXB-1139",
|
|
4522
|
+
length: "00:01:04",
|
|
4523
|
+
id: "db118ce6ac99879eb079afeed85dec1e"
|
|
4524
|
+
},
|
|
4525
|
+
{
|
|
4526
|
+
number: 6,
|
|
4527
|
+
artist: "Shock Model Duo",
|
|
4528
|
+
title: "DREAMROAD",
|
|
4529
|
+
length: "00:10:32",
|
|
4530
|
+
id: "1eff723cecddb4624f50ef21cfad0ca8"
|
|
4531
|
+
},
|
|
4532
|
+
{
|
|
4533
|
+
number: 7,
|
|
4534
|
+
artist: "The Future World Neural Net",
|
|
4535
|
+
title: "Synergy Beat Closing Credits",
|
|
4536
|
+
length: "00:00:58",
|
|
4537
|
+
id: "21c9cbf68dc923fb81f736dfeb3f6d9a"
|
|
4538
|
+
}
|
|
4539
|
+
],
|
|
4540
|
+
streams: [
|
|
4541
|
+
{
|
|
4542
|
+
platform: "Bandcamp",
|
|
4543
|
+
url: "https://synergybeat.bandcamp.com/album/synergy-beat-music-volume-1",
|
|
4544
|
+
id: "e46ecf12a7c417d53bd286c6e81cbea3"
|
|
4545
|
+
}
|
|
4546
|
+
],
|
|
4547
|
+
notes: null,
|
|
4548
|
+
credits: "<p>All music pasteurized by Tyler Etters.</p>",
|
|
4549
|
+
project_slug: "synergy-beat",
|
|
4550
|
+
release_slug: "synergy-beat-music-volume-1",
|
|
4551
|
+
cover_url: "https://d107e1o0dn11sc.cloudfront.net/synergy-beat/synergy-beat-music-volume-1/synergy-beat-music-volume-1.jpg",
|
|
4552
|
+
id: "65fd91f4f1d83bd06ecaa0d7d241dbdd"
|
|
4553
|
+
},
|
|
4479
4554
|
{
|
|
4480
4555
|
title: "reverence",
|
|
4481
4556
|
project: "tyler etters & the northern information movement",
|