💄 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
: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
"""
import logging

View File

@ -4,7 +4,7 @@
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
"""
import sys

View File

@ -4,7 +4,7 @@
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
"""
import warnings

View File

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

View File

@ -4,7 +4,7 @@
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
"""
from pyexcel_io.plugins import IOPluginInfoChainV2

View File

@ -4,7 +4,7 @@
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
"""

View File

@ -4,7 +4,7 @@
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
"""
from pyexcel_io.plugin_api import IReader

View File

@ -4,7 +4,7 @@
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
"""
from pyexcel_io.plugin_api import IReader

View File

@ -4,7 +4,7 @@
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
"""
import logging

View File

@ -4,7 +4,7 @@
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
"""
import logging

View File

@ -4,7 +4,7 @@
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
"""
import datetime

View File

@ -4,7 +4,7 @@
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
"""

View File

@ -4,7 +4,7 @@
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
"""
import os

View File

@ -4,7 +4,7 @@
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
"""
from pyexcel_io._compact import BytesIO, StringIO

View File

@ -4,7 +4,7 @@
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
"""
import pyexcel_io.utils as ioutils

View File

@ -4,7 +4,7 @@
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
"""
from pyexcel_io.plugins import IOPluginInfoChainV2

View File

@ -4,7 +4,7 @@
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
"""
import csv

View File

@ -4,7 +4,7 @@
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
"""
import zipfile

View File

@ -4,7 +4,7 @@
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
"""
import re

View File

@ -4,7 +4,7 @@
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
"""
import pyexcel_io.constants as constants

View File

@ -4,7 +4,7 @@
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
"""
import pyexcel_io.constants as constants

View File

@ -4,7 +4,7 @@
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
"""
from pyexcel_io.plugins import IOPluginInfoChainV2

View File

@ -4,7 +4,7 @@
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
"""
import csv

View File

@ -4,7 +4,7 @@
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
"""
import csv