💄 update copyright year

This commit is contained in:
chfw 2022-01-28 23:49:26 +00:00
parent 8c5f1e0de9
commit c7039124b2
24 changed files with 24 additions and 24 deletions

View File

@ -4,7 +4,7 @@
Uniform interface for reading/writing different excel file formats Uniform interface for reading/writing different excel file formats
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import logging import logging

View File

@ -4,7 +4,7 @@
Compatibles Compatibles
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import sys import sys

View File

@ -4,7 +4,7 @@
The io interface to file extensions The io interface to file extensions
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import warnings import warnings

View File

@ -4,7 +4,7 @@
Constants appeared in pyexcel Constants appeared in pyexcel
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License :license: New BSD License
""" """
# flake8: noqa # flake8: noqa

View File

@ -4,7 +4,7 @@
database data importer and exporter database data importer and exporter
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
from pyexcel_io.plugins import IOPluginInfoChainV2 from pyexcel_io.plugins import IOPluginInfoChainV2

View File

@ -4,7 +4,7 @@
Common classes shared among database importers and exporters Common classes shared among database importers and exporters
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """

View File

@ -4,7 +4,7 @@
The lower level handler for django import and export The lower level handler for django import and export
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
from pyexcel_io.plugin_api import IReader from pyexcel_io.plugin_api import IReader

View File

@ -4,7 +4,7 @@
The lower level handler for database import and export The lower level handler for database import and export
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
from pyexcel_io.plugin_api import IReader from pyexcel_io.plugin_api import IReader

View File

@ -4,7 +4,7 @@
The lower level handler for django import and export The lower level handler for django import and export
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import logging import logging

View File

@ -4,7 +4,7 @@
The lower level handler for database import and export The lower level handler for database import and export
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import logging import logging

View File

@ -4,7 +4,7 @@
The lower level handler for querysets The lower level handler for querysets
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import datetime import datetime

View File

@ -4,7 +4,7 @@
all possible exceptions all possible exceptions
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """

View File

@ -4,7 +4,7 @@
The io interface to file extensions The io interface to file extensions
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import os import os

View File

@ -4,7 +4,7 @@
Control file streams Control file streams
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
from pyexcel_io._compact import BytesIO, StringIO from pyexcel_io._compact import BytesIO, StringIO

View File

@ -4,7 +4,7 @@
factory for getting readers and writers factory for getting readers and writers
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import pyexcel_io.utils as ioutils import pyexcel_io.utils as ioutils

View File

@ -4,7 +4,7 @@
file readers file readers
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
from pyexcel_io.plugins import IOPluginInfoChainV2 from pyexcel_io.plugins import IOPluginInfoChainV2

View File

@ -4,7 +4,7 @@
csv file reader csv file reader
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import csv import csv

View File

@ -4,7 +4,7 @@
The lower level csvz file format handler. The lower level csvz file format handler.
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import zipfile import zipfile

View File

@ -4,7 +4,7 @@
provide service code to downstream projects provide service code to downstream projects
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import re import re

View File

@ -4,7 +4,7 @@
The io interface to file extensions The io interface to file extensions
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import pyexcel_io.constants as constants import pyexcel_io.constants as constants

View File

@ -4,7 +4,7 @@
utility functions utility functions
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import pyexcel_io.constants as constants import pyexcel_io.constants as constants

View File

@ -4,7 +4,7 @@
file writers file writers
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
from pyexcel_io.plugins import IOPluginInfoChainV2 from pyexcel_io.plugins import IOPluginInfoChainV2

View File

@ -4,7 +4,7 @@
The lower level csv file format writer The lower level csv file format writer
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import csv import csv

View File

@ -4,7 +4,7 @@
The lower level csvz file format handler. The lower level csvz file format handler.
:copyright: (c) 2014-2020 by Onni Software Ltd. :copyright: (c) 2014-2022 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details :license: New BSD License, see LICENSE for more details
""" """
import csv import csv