├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── ignore-list ├── pipeline.py └── telegram.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchiveTeam/telegram-grab/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM atdr.meo.ws/archiveteam/grab-base 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchiveTeam/telegram-grab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchiveTeam/telegram-grab/HEAD/README.md -------------------------------------------------------------------------------- /ignore-list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchiveTeam/telegram-grab/HEAD/pipeline.py -------------------------------------------------------------------------------- /telegram.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchiveTeam/telegram-grab/HEAD/telegram.lua --------------------------------------------------------------------------------