Как подключиться к серверу JDA из Python

У меня есть сервер JDA с деталями подключения. Я должен подключиться к этому серверу JDA из моей программы на Python и выполнить команды MOCA. Я искал и не нашел никакой документации по тому же.

Нашел некоторые jar-файлы и все, кроме ничего с python. Моё клиентское приложение на python должно подключиться к JDA и выполнить команды.

0 ответов

Я интерпретировал ваш вопрос о том, что вы пытаетесь подключиться к экземпляру JDA (WMS). Я создал приложение в NodeJs, которое подключается к экземпляру и выполняет команды MOCA.

Я публикую XML с заголовком запроса 'Content-Type': 'application/moca-xml' в <host>:<port>/service, В приведенном ниже примере XML-тела будет выполняться list user tables Команда MOCA.

<moca-request autocommit="True">
  <environment>
    <var name="USR_ID" value="..."/>
    <var name="SESSION_KEY" value="..."/>
    <var name="LOCALE_ID" value="EN-GB"/>
    <var name="MOCA_APPL_ID" value="MYAPP"/>
  </environment>
  <query>list user tables</query>
</moca-request>

SESSION_KEY может быть взято из ответа на запрос входа в систему, тело XML ниже.

<moca-request autocommit="True">
  <environment>
    <var name="USR_ID" value="..."/>
  </environment>
  <query>login user where usr_id = '...' and usr_pswd = '...'</query>
</moca-request>

Вы можете использовать это для подключения к серверу разногласий из Python. Вот пример:

import discord
from discord.ext import commands
import random

description = '''An example bot to showcase the discord.ext.commands extension
module.

There are a number of utility commands being showcased here.'''
bot = commands.Bot(command_prefix='?', description=description)

@bot.event
async def on_ready():
    print('Logged in as')
    print(bot.user.name)
    print(bot.user.id)
    print('------')

@bot.command()
async def add(left : int, right : int):
    """Adds two numbers together."""
    await bot.say(left + right)

@bot.command()
async def roll(dice : str):
    """Rolls a dice in NdN format."""
    try:
        rolls, limit = map(int, dice.split('d'))
    except Exception:
        await bot.say('Format has to be in NdN!')
        return

    result = ', '.join(str(random.randint(1, limit)) for r in range(rolls))
    await bot.say(result)

@bot.command(description='For when you wanna settle the score some other way')
async def choose(*choices : str):
    """Chooses between multiple choices."""
    await bot.say(random.choice(choices))

@bot.command()
async def repeat(times : int, content='repeating...'):
    """Repeats a message multiple times."""
    for i in range(times):
        await bot.say(content)

@bot.command()
async def joined(member : discord.Member):
    """Says when a member joined."""
    await bot.say('{0.name} joined in {0.joined_at}'.format(member))

@bot.group(pass_context=True)
async def cool(ctx):
    """Says if a user is cool.

    In reality this just checks if a subcommand is being invoked.
    """
    if ctx.invoked_subcommand is None:
        await bot.say('No, {0.subcommand_passed} is not cool'.format(ctx))

@cool.command(name='bot')
async def _bot():
    """Is the bot cool?"""
    await bot.say('Yes, the bot is cool.')

bot.run('token')

Надеюсь, поможет...

Другие вопросы по тегам