Skip to main content

TMI (Twitch Messaging Interface) library for Python.

Project description

pytmi

package_version license python_version wheel

TMI (Twitch Messaging Interface) library for Python.

You can get your OAuth token with the site https://twitchapps.com/tmi/.

Example

Here's a little application that logs in the user using OAuth, joins the Twitch channel requested by the user, sends the message Hello, Twitch! to the chat and then leaves the channel.

import asyncio
import pytmi


async def main() -> None:
    nick = input("Insert your Twitch nickname: ").strip()
    token = input("Insert your Twitch OAuth token: ").strip()
    channel = input("Insert the channel to join: ").strip()

    client = pytmi.Client()
    await client.login_oauth(token, nick)

    await client.join(channel)
    await client.privmsg("Hello, Twitch!")

    await client.part(channel)
    await client.logout()


if __name__ == "__main__":
    try:
        loop = asyncio.new_event_loop()
        loop.run_until_complete(main())
    except:
        print("Something went wrong.")

You can find others usage example inside the docs directory.

Bugs

  • Warnings with background tasks.

  • Error when using SSL.

Todos

  • Add a way to receive messages and pong every 5 minutes.

  • Handle connection and login error in a better way.

  • Handle messages that are not correctly encoded in UTF8.

  • Initial connection to Twitch server is a little bit slow.

Changelog

v0.3.0

  • Major library simplification and rewriting.

  • Removed buggy background task.

  • Add library logging.

v0.2.3

  • Add background task to collect messages (removed in v0.3.0).

  • Refactor code.

v0.2.2

  • Add message buffer abstraction.

  • Major code refactoring.

v0.2.1

  • Minor code refactoring.

v0.2.0

  • Rewrite library to be asynchronous.

  • Add SSL support (enabled by default).

  • Reorganize project structure.

v0.1.1

  • Minor code refactoring.

  • Improve message handling and parsing.

v0.1.0

  • Initial version.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytmi-0.3.1.tar.gz (7.4 kB view hashes)

Uploaded Source

Built Distribution

pytmi-0.3.1-py3-none-any.whl (7.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page