@tyleretters/discography 0.0.1
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 +24 -0
- package/dist/data.json +2467 -0
- package/package.json +11 -0
- package/src/convert.py +64 -0
- package/src/data.yml +1575 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Discography
|
|
2
|
+
|
|
3
|
+
- This repo builds a canonical discography of the music of Tyler Etters in JSON.
|
|
4
|
+
- Edit the `src/data.yml` file then run `convert.py` to generate JSON.
|
|
5
|
+
- Release dates are in a modified "Long Now" format, prefixed with `0`. This also solves for some date/object/string/parsing/conversion issues.
|
|
6
|
+
- This discography is incomplete.
|
|
7
|
+
|
|
8
|
+
## Requirements
|
|
9
|
+
|
|
10
|
+
Built with Python 3.11.5. Imports:
|
|
11
|
+
|
|
12
|
+
- yaml
|
|
13
|
+
- json
|
|
14
|
+
- re
|
|
15
|
+
- hashlib
|
|
16
|
+
- datetime
|
|
17
|
+
|
|
18
|
+
## Instructions
|
|
19
|
+
|
|
20
|
+
- clone discography
|
|
21
|
+
- `cd discography/src`
|
|
22
|
+
- `chmod 700 convert.py`
|
|
23
|
+
- `./convert.py`
|
|
24
|
+
- `cat ../dist/data.json`
|