From 4b42293131dbb9edc420acfbd8ce2d1c76869428 Mon Sep 17 00:00:00 2001 From: Lomion Date: Mon, 22 Jun 2020 16:22:28 +0200 Subject: [PATCH] Added license disclaimer to source files --- tmdb/tmdb.py | 15 +++++++++++++++ tmdb/tmdb_api.py | 15 +++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/tmdb/tmdb.py b/tmdb/tmdb.py index 035bfb2..59613ba 100644 --- a/tmdb/tmdb.py +++ b/tmdb/tmdb.py @@ -1,3 +1,18 @@ +''' +This file is part of tmdb-bot. + +tmdb-bot is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License version 3 as published by +the Free Software Foundation. + +tmdb-bot is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with tmdb-bot. If not, see . +''' from html import escape from mautrix.types import TextMessageEventContent, MediaMessageEventContent, MessageType, Format, RelatesTo, RelationType diff --git a/tmdb/tmdb_api.py b/tmdb/tmdb_api.py index 03e9740..2501bfa 100644 --- a/tmdb/tmdb_api.py +++ b/tmdb/tmdb_api.py @@ -1,3 +1,18 @@ +''' +This file is part of tmdb-bot. + +tmdb-bot is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License version 3 as published by +the Free Software Foundation. + +tmdb-bot is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with tmdb-bot. If not, see . +''' import requests class Connection():