Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1 align="center">🎵 Alice Music Bot 🎵</h1>
<h1 align="center">🎵 Gairly Music bot 🎵</h1>

<p align="center">
<img src="https://graph.org/file/f586172fe40a0b5d0b0df.jpg" alt="Alice Music Logo" width="600" height="350">
<img src="(https://envs.sh/jha.jpg)" alt="Gairly Music Logo" width="600" height="350">
</p>

<p align="center">
Expand Down
2 changes: 1 addition & 1 deletion READsME.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# alice
# gairly
Discover, stream, and enjoy music effortlessly with Alice, the advanced Telegram music bot designed for true music lovers.
40 changes: 20 additions & 20 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
load_dotenv()

# Get this value from my.telegram.org/apps
API_ID = API_ID
API_HASH = "API_HASH"
API_ID = 25428374
API_HASH = "2fc9ceb7636cb248b6e35f0dc97dc777"

# Get your token from @BotFather on Telegram.
BOT_TOKEN = "BOT_TOKEN"
BOT_TOKEN = "8177333872:AAFoOZ3AuOXtM_T02uhJnyGF-we6Lp87dLs"

# Get your mongo url from cloud.mongodb.com
MONGO_DB_URI = "MONGO_DB_URI"
Expand All @@ -22,8 +22,8 @@
LOG_GROUP_ID = LOG_GROUP_ID

# Get this value from @ultron2_robot on Telegram by /id
OWNER_ID = OWNER_ID

OWNER_ID =
7043937733
## Fill these variables if you're deploying on heroku.
# Your heroku app name
HEROKU_APP_NAME = getenv("HEROKU_APP_NAME")
Expand All @@ -32,15 +32,15 @@

UPSTREAM_REPO = getenv(
"UPSTREAM_REPO",
"https://github.com/rishabhops/alice",
"https://t.me/theenglishelevators",
)
UPSTREAM_BRANCH = getenv("UPSTREAM_BRANCH", "main")
GIT_TOKEN = getenv(
"GIT_TOKEN", None
) # Fill this variable if your upstream repository is private

SUPPORT_CHANNEL = "https://t.me/thanos_pro"
SUPPORT_GROUP = "https://t.me/thanosprosss"
SUPPORT_CHANNEL = "https://t.me/theenglishelevator"
SUPPORT_GROUP = "https://t.me/theenglishelevators"

# Set this to True if you want the assistant to automatically leave chats after an interval
AUTO_LEAVING_ASSISTANT = bool(getenv("AUTO_LEAVING_ASSISTANT", False))
Expand Down Expand Up @@ -77,20 +77,20 @@
confirmer = {}


START_IMG_URL = "https://graph.org/file/f586172fe40a0b5d0b0df.jpg"
START_IMG_URL = "https://envs.sh/jha.jpg"

PING_IMG_URL = "https://graph.org/file/f586172fe40a0b5d0b0df.jpg"
PING_IMG_URL = "https://envs.sh/jha.jpg"

PLAYLIST_IMG_URL = "https://graph.org/file/763a841a2ad5cbb1e2fc5.jpg"
STATS_IMG_URL = "https://graph.org/file/f586172fe40a0b5d0b0df.jpg"
TELEGRAM_AUDIO_URL = "https://graph.org//file/2f7debf856695e0ef0607.png"
TELEGRAM_VIDEO_URL = "https://graph.org//file/2f7debf856695e0ef0607.png"
STREAM_IMG_URL = "https://te.legra.ph/file/bd995b032b6bd263e2cc9.jpg"
SOUNCLOUD_IMG_URL = "https://te.legra.ph/file/bb0ff85f2dd44070ea519.jpg"
YOUTUBE_IMG_URL = "https://graph.org//file/2f7debf856695e0ef0607.png"
SPOTIFY_ARTIST_IMG_URL = "https://te.legra.ph/file/37d163a2f75e0d3b403d6.jpg"
SPOTIFY_ALBUM_IMG_URL = "https://te.legra.ph/file/b35fd1dfca73b950b1b05.jpg"
SPOTIFY_PLAYLIST_IMG_URL = "https://te.legra.ph/file/95b3ca7993bbfaf993dcb.jpg"
PLAYLIST_IMG_URL = "https://envs.sh/jha.jpg"
STATS_IMG_URL = "https://envs.sh/jha.jpg"
TELEGRAM_AUDIO_URL = "https://envs.sh/jha.jpg"
TELEGRAM_VIDEO_URL = "https://envs.sh/jha.jpg"
STREAM_IMG_URL = "https://envs.sh/jha.jpg"
SOUNCLOUD_IMG_URL = "https://envs.sh/jha.jpg"
YOUTUBE_IMG_URL = "https://envs.sh/jha.jpg"
SPOTIFY_ARTIST_IMG_URL = "https://envs.sh/jha.jpg"
SPOTIFY_ALBUM_IMG_URL = "https://envs.sh/jha.jpg"
SPOTIFY_PLAYLIST_IMG_URL = "https://envs.sh/jha.jpg"


def time_to_seconds(time):
Expand Down