├── .gitignore ├── LICENSE ├── README.md ├── api └── settings_example ├── backuper.py ├── exporter ├── __init__.py ├── exporter.py ├── html_content.py ├── html_formatter.py ├── html_tl_writer.py └── resources │ ├── default_document.png │ ├── default_photo.png │ ├── default_propic.png │ ├── example.html │ └── style.css ├── main.py ├── media_handler.py ├── tl_database.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/README.md -------------------------------------------------------------------------------- /api/settings_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/api/settings_example -------------------------------------------------------------------------------- /backuper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/backuper.py -------------------------------------------------------------------------------- /exporter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/__init__.py -------------------------------------------------------------------------------- /exporter/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/exporter.py -------------------------------------------------------------------------------- /exporter/html_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/html_content.py -------------------------------------------------------------------------------- /exporter/html_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/html_formatter.py -------------------------------------------------------------------------------- /exporter/html_tl_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/html_tl_writer.py -------------------------------------------------------------------------------- /exporter/resources/default_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/resources/default_document.png -------------------------------------------------------------------------------- /exporter/resources/default_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/resources/default_photo.png -------------------------------------------------------------------------------- /exporter/resources/default_propic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/resources/default_propic.png -------------------------------------------------------------------------------- /exporter/resources/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/resources/example.html -------------------------------------------------------------------------------- /exporter/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/exporter/resources/style.css -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/main.py -------------------------------------------------------------------------------- /media_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/media_handler.py -------------------------------------------------------------------------------- /tl_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/tl_database.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LonamiWebs/Telebackup/HEAD/utils.py --------------------------------------------------------------------------------