diff --git a/anonstream/__init__.py b/anonstream/__init__.py index b853268..89d1918 100644 --- a/anonstream/__init__.py +++ b/anonstream/__init__.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later from collections import OrderedDict diff --git a/anonstream/broadcast.py b/anonstream/broadcast.py index 63524a6..351d369 100644 --- a/anonstream/broadcast.py +++ b/anonstream/broadcast.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later from quart import current_app diff --git a/anonstream/captcha.py b/anonstream/captcha.py index 76badbb..fb1b0af 100644 --- a/anonstream/captcha.py +++ b/anonstream/captcha.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import secrets diff --git a/anonstream/chat.py b/anonstream/chat.py index 7f9986e..c30ce69 100644 --- a/anonstream/chat.py +++ b/anonstream/chat.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import time diff --git a/anonstream/helpers/captcha.py b/anonstream/helpers/captcha.py index 7006f95..7e9a809 100644 --- a/anonstream/helpers/captcha.py +++ b/anonstream/helpers/captcha.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import base64 diff --git a/anonstream/helpers/chat.py b/anonstream/helpers/chat.py index 1790a19..3feac2a 100644 --- a/anonstream/helpers/chat.py +++ b/anonstream/helpers/chat.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import hashlib diff --git a/anonstream/helpers/tripcode.py b/anonstream/helpers/tripcode.py index 353a7ce..9275bd8 100644 --- a/anonstream/helpers/tripcode.py +++ b/anonstream/helpers/tripcode.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import base64 diff --git a/anonstream/helpers/user.py b/anonstream/helpers/user.py index f24301f..f18561e 100644 --- a/anonstream/helpers/user.py +++ b/anonstream/helpers/user.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import hashlib diff --git a/anonstream/routes/__init__.py b/anonstream/routes/__init__.py index 0d05bfc..2bc5259 100644 --- a/anonstream/routes/__init__.py +++ b/anonstream/routes/__init__.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import anonstream.routes.core diff --git a/anonstream/routes/core.py b/anonstream/routes/core.py index c4be7de..92425be 100644 --- a/anonstream/routes/core.py +++ b/anonstream/routes/core.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import math diff --git a/anonstream/routes/nojs.py b/anonstream/routes/nojs.py index 967f894..569269e 100644 --- a/anonstream/routes/nojs.py +++ b/anonstream/routes/nojs.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later from quart import current_app, request, render_template, redirect, url_for, escape, Markup diff --git a/anonstream/routes/websocket.py b/anonstream/routes/websocket.py index 933c9c8..12eafd4 100644 --- a/anonstream/routes/websocket.py +++ b/anonstream/routes/websocket.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import asyncio diff --git a/anonstream/routes/wrappers.py b/anonstream/routes/wrappers.py index f191166..c5ac817 100644 --- a/anonstream/routes/wrappers.py +++ b/anonstream/routes/wrappers.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import hashlib diff --git a/anonstream/segments.py b/anonstream/segments.py index cc4edca..84c5570 100644 --- a/anonstream/segments.py +++ b/anonstream/segments.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import asyncio diff --git a/anonstream/stream.py b/anonstream/stream.py index 0ee9e52..0d77d87 100644 --- a/anonstream/stream.py +++ b/anonstream/stream.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import itertools diff --git a/anonstream/tasks.py b/anonstream/tasks.py index 802bf40..565e4e1 100644 --- a/anonstream/tasks.py +++ b/anonstream/tasks.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import asyncio diff --git a/anonstream/user.py b/anonstream/user.py index 32ea0a7..0edfa56 100644 --- a/anonstream/user.py +++ b/anonstream/user.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import operator diff --git a/anonstream/utils/captcha.py b/anonstream/utils/captcha.py index f4655e4..d10b84b 100644 --- a/anonstream/utils/captcha.py +++ b/anonstream/utils/captcha.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import hashlib diff --git a/anonstream/utils/chat.py b/anonstream/utils/chat.py index 0b4d5f7..e0ac7fd 100644 --- a/anonstream/utils/chat.py +++ b/anonstream/utils/chat.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import base64 diff --git a/anonstream/utils/colour.py b/anonstream/utils/colour.py index d20880a..9ee03ad 100644 --- a/anonstream/utils/colour.py +++ b/anonstream/utils/colour.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import re diff --git a/anonstream/utils/security.py b/anonstream/utils/security.py index c1b1e62..92e3252 100644 --- a/anonstream/utils/security.py +++ b/anonstream/utils/security.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import secrets diff --git a/anonstream/utils/user.py b/anonstream/utils/user.py index 8a01228..ed2c12e 100644 --- a/anonstream/utils/user.py +++ b/anonstream/utils/user.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import base64 diff --git a/anonstream/utils/websocket.py b/anonstream/utils/websocket.py index 294b75f..c83e6f3 100644 --- a/anonstream/utils/websocket.py +++ b/anonstream/utils/websocket.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later from enum import Enum diff --git a/anonstream/websocket.py b/anonstream/websocket.py index 4878e1e..4a48132 100644 --- a/anonstream/websocket.py +++ b/anonstream/websocket.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import asyncio diff --git a/anonstream/wrappers.py b/anonstream/wrappers.py index 3a8ead1..50535fb 100644 --- a/anonstream/wrappers.py +++ b/anonstream/wrappers.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import time diff --git a/app.py b/app.py index 303f0b1..45f5b90 100644 --- a/app.py +++ b/app.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 n9k [https://git.076.ne.jp/ninya9k] +# SPDX-FileCopyrightText: 2022 n9k # SPDX-License-Identifier: AGPL-3.0-or-later import os