Website Logo

Almgroad Library

This library offers several services including chatting with ChatGPT, accessing Instagram and TikTok information, downloading Instagram and TikTok videos, searching on Pinterest, and also downloading from Pinterest, etc. Below is how to use it:

Library installation command
pip install almgroad
To search on Pinterest
from almgroad import Search_Pinterest

# Make sure to enter your desired search query (e.g., "quran") within the parentheses
response = Search_Pinterest("quran")
print(response)
To chat with ChatGPT
from almgroad import GPT

# Enter your message within the quotation marks
response = GPT("Hi GPT")["answer"]
print(response)
To get user information from Instagram
from almgroad import Info_Insta 

# Enter the Instagram username you want to get information about inside the parentheses
response = Info_Insta("ibrahimm.aliraqi")
print(response)
To get user information from TikTok
from almgroad import Info_Tik 

# Enter the TikTok username you want to get information about inside the parentheses
response = Info_Tik("ibrahimm.aliraqi")
print(response)
Downloading videos from Instagram
from almgroad import instagram
import asyncio 

# Enter the Instagram video URL you want to download inside the parentheses
response = asyncio.run(instagram("https://www.instagram.com/XXXXXXXX"))

for url in response:
    print(url)
Downloading videos from TikTok
from almgroad import Tik_Tok

# Enter the TikTok video URL you want to download inside the parentheses
response = Tik_Tok("https://vt.tiktok.com/XXXXXX")["url"]
print(response)
To get random general questions
from almgroad import kt
response = kt()["question"]
print(response)
To get prayer times
from almgroad import prayer_times

# Enter the city name or country name for which you want to get prayer times inside the parentheses
# You can use Arabic language for city or country names
response = prayer_times("Mosul")
print(response)

Instagram Telegram Facebook TikTok