About 1,710,000 results
Open links in new tab
  1. data scraping on discord using python - Stack Overflow

    Jun 1, 2021 · I'm currently trying to learn web scraping and decided to scrape some discord data. Code follows: import requests import json def retrieve_messages(channelid): num=0 headers …

  2. python - Log into website via Discord API and store session - Stack ...

    May 1, 2024 · I need to use the Discord API to log into a website I've built, store it in a session, and at some point be able to call the username for a database entry. I know you need to pull …

  3. python - discord.py get user "about me" section - Stack Overflow

    Aug 4, 2021 · I was wondering if it was possible using discord.py to get the "about me" section of a given user. I did not find anything in the API documentation so I'm asking here to …

  4. python - Create a discord channel with the discord API - Stack …

    Oct 1, 2021 · Have you looked into using discord.py ? As a library it is excellent for wrapping the api into async python functions and is generally well done. Its unfortunate that support for it is …

  5. How can I send a picture with the Discord API and Python Requests

    Jul 23, 2021 · 1 It's my first time posting here, and I want to ask you if you can help me to find a way to send a picture in a channel with the Discord API with Python Requests. (I'm not talking …

  6. bots - Discord - Send message only from python app to discord …

    Jul 4, 2020 · A python library designed for the explicit purpose of sending a message to the discord server. A simple example from the PyPI page would be:

  7. How do i make a working slash command in discord.py

    Feb 17, 2022 · I am trying to make a slash command with discord.py I have tried a lot of stuff it doesn't seem to be working. Help would be appreciated.

  8. python - Discord.py read messages from channels - Stack Overflow

    Aug 26, 2021 · Discord.py read messages from channels Asked 4 years, 3 months ago Modified 3 months ago Viewed 13k times

  9. python - How do I mention a user in discord.py? - Stack Overflow

    May 14, 2017 · I'm trying to code a simple bot using discord.py, so I started with the fun commands to get familiar with the library. import discord client = discord.Client() @client.event …

  10. python - Send data to a Discord webhook - Stack Overflow

    Apr 2, 2018 · My first suggestion is the following steps: Make a webhook in the desired Discord channel. use the discord.Webhook.from_url method to fetch a Webhook object from the URL …