This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright (C) 2017 The Qt Company Ltd. | |
| # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 | |
| import os | |
| import sys | |
| # import imp | |
| import importlib.util | |
| import re | |
| # from distutils.version import LooseVersion |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import argparse | |
| import sqlite3 | |
| from typing import Tuple, Any | |
| import uuid | |
| def create_arg_parser(): | |
| parser = argparse.ArgumentParser( | |
| prog='sioyek-database-migrator', | |
| ) |