diff options
Diffstat (limited to 'vk/tracking/db')
-rw-r--r-- | vk/tracking/db/__init__.py | 7 | ||||
-rw-r--r-- | vk/tracking/db/backend/__init__.py | 7 | ||||
-rw-r--r-- | vk/tracking/db/backend/csv.py | 7 | ||||
-rw-r--r-- | vk/tracking/db/backend/log.py | 7 | ||||
-rw-r--r-- | vk/tracking/db/backend/null.py | 7 | ||||
-rw-r--r-- | vk/tracking/db/format.py | 7 | ||||
-rw-r--r-- | vk/tracking/db/record.py | 7 | ||||
-rw-r--r-- | vk/tracking/db/timestamp.py | 7 |
8 files changed, 32 insertions, 24 deletions
diff --git a/vk/tracking/db/__init__.py b/vk/tracking/db/__init__.py index 9e6b74a..8019244 100644 --- a/vk/tracking/db/__init__.py +++ b/vk/tracking/db/__init__.py @@ -1,6 +1,7 @@ -# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "VK scripts" project. +# For details, see https://github.com/egor-tensin/vk-scripts. +# Distributed under the MIT License. from .format import Format diff --git a/vk/tracking/db/backend/__init__.py b/vk/tracking/db/backend/__init__.py index 68de924..58b5a9a 100644 --- a/vk/tracking/db/backend/__init__.py +++ b/vk/tracking/db/backend/__init__.py @@ -1,6 +1,7 @@ -# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "VK scripts" project. +# For details, see https://github.com/egor-tensin/vk-scripts. +# Distributed under the MIT License. from . import csv, log, null diff --git a/vk/tracking/db/backend/csv.py b/vk/tracking/db/backend/csv.py index 10a504f..f20c617 100644 --- a/vk/tracking/db/backend/csv.py +++ b/vk/tracking/db/backend/csv.py @@ -1,6 +1,7 @@ -# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "VK scripts" project. +# For details, see https://github.com/egor-tensin/vk-scripts. +# Distributed under the MIT License. from collections.abc import Iterable import csv diff --git a/vk/tracking/db/backend/log.py b/vk/tracking/db/backend/log.py index 03548eb..6eebc35 100644 --- a/vk/tracking/db/backend/log.py +++ b/vk/tracking/db/backend/log.py @@ -1,6 +1,7 @@ -# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "VK scripts" project. +# For details, see https://github.com/egor-tensin/vk-scripts. +# Distributed under the MIT License. import logging diff --git a/vk/tracking/db/backend/null.py b/vk/tracking/db/backend/null.py index 139a9f0..6454f84 100644 --- a/vk/tracking/db/backend/null.py +++ b/vk/tracking/db/backend/null.py @@ -1,6 +1,7 @@ -# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "VK scripts" project. +# For details, see https://github.com/egor-tensin/vk-scripts. +# Distributed under the MIT License. from collections.abc import Iterable diff --git a/vk/tracking/db/format.py b/vk/tracking/db/format.py index 862c20e..9d5c6e4 100644 --- a/vk/tracking/db/format.py +++ b/vk/tracking/db/format.py @@ -1,6 +1,7 @@ -# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "VK scripts" project. +# For details, see https://github.com/egor-tensin/vk-scripts. +# Distributed under the MIT License. from enum import Enum diff --git a/vk/tracking/db/record.py b/vk/tracking/db/record.py index 2bd17c1..c03c3ca 100644 --- a/vk/tracking/db/record.py +++ b/vk/tracking/db/record.py @@ -1,6 +1,7 @@ -# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "VK scripts" project. +# For details, see https://github.com/egor-tensin/vk-scripts. +# Distributed under the MIT License. from collections import OrderedDict from collections.abc import MutableMapping diff --git a/vk/tracking/db/timestamp.py b/vk/tracking/db/timestamp.py index 35cf5b3..b2219ca 100644 --- a/vk/tracking/db/timestamp.py +++ b/vk/tracking/db/timestamp.py @@ -1,6 +1,7 @@ -# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "VK scripts" project. +# For details, see https://github.com/egor-tensin/vk-scripts. +# Distributed under the MIT License. from datetime import datetime, timezone |