Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ds-user

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ds-user

This library will make it easier to manage Discord accounts with an account token!

  • 0.0.5
  • PyPI
  • Socket score

Maintainers
1

This library will make it easier to manage Discord accounts with an account token!

Examples:

Send Message

from ds_user import client

client = client.Account(token="Your_ds_account_token")

client.send_message(channel_id=Channel_id, text="Hi")

Delete Message

from ds_user import client

client = client.Account(token="Your_ds_account_token")

client.delete_message(channel_id=Channel_id, message_id=Message_id)

List Guilds

from ds_user import client

client = client.Account(token="Your_ds_account_token")

guilds = client.list_guilds()

print(guilds)

Get Channel Messages

from ds_user import client

client = client.Account(token="Your_ds_account_token")

messages = client.get_channel_messages(channel_id=Channel_id)

print(messages)

Delete Guild

from ds_user import client

client = client.Account(token="Your_ds_account_token")

client.delete_guild(guild_id=Guild_id)

FAQs


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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc