10.6.6 • Published 9 months ago

ex-bot-z-downloader v10.6.6

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

EX-BOT-Z SOCIAL MEDIA DOWNLOADER

Features

Downloders

instagram downloader
•youtube downloader

Search

•youtube search

INSTAGRAM DOWNLOADER

const { InstagramDl } = require("ex-bot-z/downloader");

Function

command(
  {
    pattern: "igdl",
    fromMe: isPublic,
    desc: "download posts from instagram",
    type: "downloader",
  },
  async (message, match, m, client) => {
if (!match) return await message.reply(`*_Need instagram post url!_*`);
    let igdl = await InstagramDl(match);
client.sendMessage(message.jid, {video:{url:igdl.url}},{quoted:m})
  })