From b801e669ac38641092bcf58cf9bee0b2a18dbd2e Mon Sep 17 00:00:00 2001 From: prgofficial <65294906+prgofficial@users.noreply.github.com> Date: Fri, 5 Mar 2021 17:58:14 +0530 Subject: [PATCH] credits :D --- config.py | 4 +++- helpers/download.py | 5 +++++ helpers/ffmpeg.py | 5 +++++ helpers/progress.py | 5 +++++ helpers/tools.py | 5 +++++ helpers/upload.py | 5 +++++ main.py | 4 +++- plugins/callback.py | 4 ++++ plugins/extractor.py | 5 +++++ plugins/start.py | 5 +++++ script.py | 5 ++++- 11 files changed, 49 insertions(+), 3 deletions(-) diff --git a/config.py b/config.py index 13bad85..04ec396 100644 --- a/config.py +++ b/config.py @@ -1,4 +1,6 @@ -# By @TroJanzHEX +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex import os diff --git a/helpers/download.py b/helpers/download.py index 0bfcac0..4ce0493 100644 --- a/helpers/download.py +++ b/helpers/download.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex + + import time import json diff --git a/helpers/ffmpeg.py b/helpers/ffmpeg.py index a50869a..1164681 100644 --- a/helpers/ffmpeg.py +++ b/helpers/ffmpeg.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex + + from helpers.tools import execute, clean_up from helpers.upload import upload_audio, upload_subtitle diff --git a/helpers/progress.py b/helpers/progress.py index 7fee9a6..1f4cf81 100644 --- a/helpers/progress.py +++ b/helpers/progress.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex + + import os import time diff --git a/helpers/tools.py b/helpers/tools.py index dc203ca..edffbbf 100644 --- a/helpers/tools.py +++ b/helpers/tools.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex + + import os import shlex import asyncio diff --git a/helpers/upload.py b/helpers/upload.py index b54134f..ead18e8 100644 --- a/helpers/upload.py +++ b/helpers/upload.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex + + import time from hachoir.parser import createParser diff --git a/main.py b/main.py index ed8dc09..a3f63f4 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,6 @@ -# By @TroJanzHEX +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex from pyrogram import Client diff --git a/plugins/callback.py b/plugins/callback.py index 2f1f622..1a44c2b 100644 --- a/plugins/callback.py +++ b/plugins/callback.py @@ -1,3 +1,7 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex + from pyrogram import filters from pyrogram import Client as trojanz diff --git a/plugins/extractor.py b/plugins/extractor.py index ea114b1..8fe7618 100644 --- a/plugins/extractor.py +++ b/plugins/extractor.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex + + from pyrogram import filters from pyrogram import Client as trojanz from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton diff --git a/plugins/start.py b/plugins/start.py index f4e99cf..9ea2a4d 100644 --- a/plugins/start.py +++ b/plugins/start.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex + + from pyrogram import filters from pyrogram import Client as trojanz from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton diff --git a/script.py b/script.py index 72d5d96..70e729f 100644 --- a/script.py +++ b/script.py @@ -1,4 +1,7 @@ -# By @TroJanzHEX +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# @trojanzhex + class Script(object):