├── .github ├── dependabot.yml └── workflows │ └── publish-package.yml ├── .gitignore ├── INSTALL.md ├── LICENSE ├── Makefile ├── README.md ├── onec_database_converter ├── __init__.py ├── __main__.py ├── _version.py ├── cli.py ├── core.py ├── executor.py ├── report.py └── server.py ├── pictures └── logo.png ├── prepare.py ├── requirements.txt ├── run.py └── setup.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/.github/workflows/publish-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/README.md -------------------------------------------------------------------------------- /onec_database_converter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/onec_database_converter/__init__.py -------------------------------------------------------------------------------- /onec_database_converter/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/onec_database_converter/__main__.py -------------------------------------------------------------------------------- /onec_database_converter/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.0.3' 2 | -------------------------------------------------------------------------------- /onec_database_converter/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/onec_database_converter/cli.py -------------------------------------------------------------------------------- /onec_database_converter/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/onec_database_converter/core.py -------------------------------------------------------------------------------- /onec_database_converter/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/onec_database_converter/executor.py -------------------------------------------------------------------------------- /onec_database_converter/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/onec_database_converter/report.py -------------------------------------------------------------------------------- /onec_database_converter/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/onec_database_converter/server.py -------------------------------------------------------------------------------- /pictures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/pictures/logo.png -------------------------------------------------------------------------------- /prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/prepare.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/run.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soxoj/1c-database-converter/HEAD/setup.py --------------------------------------------------------------------------------