import discord
from discord.ext import commands
intents = discord.Intents.default()
intents.members = True
client = commands.Bot(command_prefix='!', intents=intents)
@client.command()
async def ping(ctx):
user = client.get_user(id)
await user.send('message')
client.run('token')