New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

vortexlist

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vortexlist

A official disbots.xyz api

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
1
Created
Source

NPM: npmjs.com/package/vortexlist

npm installnfo

Installation

If you have trouble with the installation, please feel free to visit our discord address.

  • npm i vortexlist

1. Where can I get vortexlist.xyz api?

Ans: JavaScript Python

2. How do I install it?

Ans: JavaSciprt: npm i vortexlist or npm install vortexlist Python: pip install vortexlist

3. Does it have any GitHub Repository?

Ans: Yes It Is Here

4. What is it's uses?

Ans: To get the daily vote count, server count and information about your bot. Examples: avatar, botID, discriminator, shortDescription, prefix, votes, serverCount, ownerID, owner, co-owners, tags, longDescription, certificate etc.

5. How can I get my bot's server count?

Ans: JavaScript:

const vortexlist = require("vortexlist");
const dbl = new vortexlist("TOKEN-HERE", client);
// you get the token from the bots profile @ https://vortexlist.xyz

client.on("ready", async () => {
  dbl.serverCount();
  console.log("Server count posted")

Python: (In Development)

from vortexlist import vortexlist
from discord.ext import commands, tasks

client = commands.Bot(command_prefix="!") 
dbl = vortexlist(client,"token of vortexlist")

@tasks.loop(minutes = 10)
async def postservercount():
  await dbl.serverCountPost()

@client.event
async def on_ready():
  postservercount.start()

client.run("token") 

6. How can I get my bot's vote count?

Ans:

let hasVote = await dbl.hasVoted("Your-bot-id");
  if(hasVote === true) {
    console.log("Voted")
  } else {
    console.log("Vote please.")
  }
  
  
  let search = await dbl.search("Your-bot-id")
  console.log(search)

7. Full Example?

Ans:

const vortexlist = require("vortexlist");
const dbl = new vortexlist("TOKEN-HERE", client);

client.on("ready", async () => {
  dbl.serverCount();
  console.log("Server count posted")
  
  let hasVote = await dbl.hasVoted("your-bot-id");
  if(hasVote === true) {
    console.log("Voted")
  } else {
    console.log("Vote please.")
  }
  
  
  let search = await dbl.search("Your-bot-id")
  console.log(search)

  /* SearchResults
  {
    avatar: '',
    botID: '',
    username: '',
    discrim: '',
    shortDesc: '',
    prefix: '? [changable]',
    votes: 25,
    ownerID: '',
    owner: '',
    coowners: [ '' ],
    tags: [ 'Moderation', 'NSFW', 'Music' ],
    longDesc: longDesc,
    certificate: 'Certified'
  }
  */
});

Questions?

Come talk to us here:

vortexlist.xyz

Keywords

bot

FAQs

Package last updated on 16 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts