ytdl-sub/tests/e2e
Jesse Bannon 5e335b195c
[FEATURE] Allow YAML maps and lists in overrides, convert to script format (#956)
Adds the ability to create map and list-based override variables. 

For example, you can now create lists like this:
```
overrides:
  urls:
    - "https://...1"
    - "https://...2"
```
which is equivalent to:
```
overrides:
  urls: >-
    {
      [
        "https://...1",
        "https://...2",
      ]
    }
```

Likewise, maps can now look like:
```
overrides:
  music_video_category:
    concerts:
      - "https://...1"
      - "https://...2"
    interviews:
      - "https://...3"
```
which is equivalent to:
```
overrides:
  music_video_category: >-
    {
      "concerts": [
        "https://...1",
        "https://...2"
      ],
      "interviews": [
        "https://...3"
      ]
    }
```
2024-06-02 20:02:48 -07:00
..
bandcamp [FEATURE] Prebuilt Music Videos (#787) 2023-10-28 00:12:22 -07:00
entries [FEATURE] Automatically handle playlists ordered in reverse (#948) 2024-04-01 04:24:41 -07:00
plugins [FEATURE] Toggle date_range to break or not (#904) 2024-01-18 16:23:02 -08:00
soundcloud [BUGFIX] Use proper extractor key for download archive (#840) 2023-12-14 17:04:03 -08:00
youtube [FEATURE] Allow YAML maps and lists in overrides, convert to script format (#956) 2024-06-02 20:02:48 -07:00
__init__.py e2e tests wip 2022-04-28 04:43:47 +00:00
conftest.py [FEATURE] Add throttle_protection plugin (#799) 2023-11-05 08:23:12 -08:00