반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- SQL
- Apache
- Java
- PostgreSQL
- Github
- 파이썬
- hive
- google apps script
- dataframe
- gas
- list
- Excel
- Tkinter
- Kotlin
- Python
- Google Excel
- array
- string
- matplotlib
- Redshift
- c#
- GIT
- PySpark
- Google Spreadsheet
- numpy
- Mac
- PANDAS
- math
- django
Archives
- Today
- Total
목록author (1)
달나라 노트
Python Discord : message 작성자 정보 불러오기, message author, discord 사람 태그하기 (Python Discord API)
Python discord API를 사용할 때 어떤 메세지의 작성자를 불러오는 방법이 있습니다. 먼저 discord.ext.commands를 사용하는 경우입니다. from discord.ext import commands discord_token = 'token_string' client = commands.Bot(command_prefix='/') @client.event async def on_ready(): print('{} logged in.'.format(client)) print('Bot: {}'.format(client.user)) print('Bot name: {}'.format(client.user.name)) print('Bot ID: {}'.format(client.user.id)) ..
Python/Python ETC
2022. 2. 21. 23:10