This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""This script changes all Radarr movie folders to `{current_folder_name} {tmdb-xxx}` format | |
and removes characters that are illegal on Windows from the path.""" | |
import json | |
import pathlib | |
import re | |
import sys | |
from requests import request |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""This script changes all Sonarr series folders to `{current_folder_name} {tvdb-xxx}` format | |
and removes characters that are illegal on Windows from the path.""" | |
import json | |
import pathlib | |
import re | |
import sys | |
from requests import request |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import contextlib | |
import sys | |
import time | |
from pathlib import Path | |
from uuid import uuid4 | |
from aiofile import AIOFile | |
from aiofiles import open as aio_open | |
from anyio import open_file as anyio_open |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import annotations | |
import re | |
from pprint import pprint | |
from typing import Any, Callable, Literal, Awaitable, Union | |
from dataclasses import dataclass | |
# >>> React props <<< | |
# https://beta.reactjs.org/reference/react-dom/components/common#common-props |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# type: ignore | |
# pylint: skip-file | |
# <div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true"> | |
# <div class="modal-dialog"> | |
# <div class="modal-content"> | |
# modal_header(title="Modal Title") | |
# modal_body() | |
# <div class="modal-footer"> | |
# <hr> |