midjourney-api-the-next-leg / python-midjourney-api

Python package for working with Midjourney via The Next Leg
MIT License
31 stars 2 forks source link

The Next Leg

The Next Leg is a module that provides functionality for creating AI-generated images with Midjourney. It provides a simple interface for interacting with Midjourney's API and performing various actions such as creating images from prompts or URLs, describing images, using buttons or slash commands, and getting/setting account settings.

Installation

To use this package, you need to have Python installed on your machine. You can install TNL using pip:

pip install midjourney-api

Usage

Here is an example of how to use the TNL package to create an image from a prompt:

from midjourney_api import TNL

TNL_API_KEY = 'your_api_key_here'
tnl = TNL(TNL_API_KEY)

prompt = 'a cat playing the piano'
response = tnl.imagine(prompt)

print(response)

API

`TNL(api_key: str)

Creates a new instance of TNL with the provided apiKey.

Imagine

tnl.imagine(prompt: str, ref: str = '', webhook_override: str = '')

Creates a new image from a prompt.

Get Progress and Message Result

tnl.get_message_and_progress(message_id: str, expire_mins: Optional[int] = None)

Gets the progress and response of a message.

Img 2 Img

tnl.img2img(prompt: str, img_url: str, ref: str = '', webhook_override: str = '')

Creates an image from a prompt and an image.

Describe

tnl.describe(img_url: str, ref: str = '', webhook_override: str = '')

Describes an image.

Button

tnl.button(button: TNLTypes.ButtonTypes, button_message_id: str, ref: str = '', webhook_override: str = '')

Uses a button on an image.

Get Seed

tnl.getSeed(message_id: string): Promise<TNLTypes.Response.Seed>

Gets a seed of a message.

Slash Command

tnl.slashCommand(slashCommand: TNLTypes.SlashCommands, ref?: string, webhook_override?: string)

Uses a slash command such as relax, fast, private, or stealth.

Get Settings

tnl.getSettings(): Promise<TNLTypes.Response.Message>

Gets the settings available for your account.

Set Settings

tnl.setSettings(settings: TNLTypes.Settings, ref?: string, webhook_override?: string)

Sets the settings for your account.

Get Info

tnl.getInfo(ref?: string, webhook_override?: string)

Gets information about your account including Fast Time Remaining, Job Mode, Queued Jobs and more.

Get Seed

tnl.getSeed(message_id: str)

Gets a seed of a message.

Slash Command

tnl.slashCommand(slash_command: TNLTypes.SlashCommands, ref: str = '', webhook_override: str = '')

Uses a slash command such as relax, fast, private, or stealth.

Get Settings

tnl.getSettings()

Gets the settings available for your account.

Set Settings

tnl.setSettings(settings: TNLTypes.Settings, ref: str = '', webhook_override: str = '')

Sets the settings for your account.

Get Info

tnl.getInfo(ref: str = '', webhook_override: str = '')

Gets information about your account including Fast Time Remaining, Job Mode, Queued Jobs and more.