├── .gitignore ├── Dockerfile ├── LICENSE.md ├── Logo.png ├── Logo1.png ├── P1.gif ├── P2.gif ├── README.md ├── download_utils.py ├── moboff.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/Logo.png -------------------------------------------------------------------------------- /Logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/Logo1.png -------------------------------------------------------------------------------- /P1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/P1.gif -------------------------------------------------------------------------------- /P2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/P2.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/README.md -------------------------------------------------------------------------------- /download_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/download_utils.py -------------------------------------------------------------------------------- /moboff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/moboff.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pushbullet.py 2 | youtube-dl 3 | click -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parth-Vader/MobOff/HEAD/setup.py --------------------------------------------------------------------------------