├── .gitignore ├── LICENSE ├── README.md ├── main.py ├── settings.json └── utils ├── log.py ├── updateapi.py └── worker.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naprelsky/1cAutoupdate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naprelsky/1cAutoupdate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naprelsky/1cAutoupdate/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naprelsky/1cAutoupdate/HEAD/main.py -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naprelsky/1cAutoupdate/HEAD/settings.json -------------------------------------------------------------------------------- /utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naprelsky/1cAutoupdate/HEAD/utils/log.py -------------------------------------------------------------------------------- /utils/updateapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naprelsky/1cAutoupdate/HEAD/utils/updateapi.py -------------------------------------------------------------------------------- /utils/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naprelsky/1cAutoupdate/HEAD/utils/worker.py --------------------------------------------------------------------------------