Skip to main content

An unofficial Python wrapper for the Rumble Live Stream API v1.0 (beta)

Project description

Cocorum: Rumble Live Stream API Python Wrapper

A Python wrapper for the Rumble Live Stream API v1.0 (beta), with some quality of life additions, such as: - Automatic refresh when past the refresh_rate delay when querying any non_static property. - All timespamps are parsed to seconds since Epoch, UTC timezone. - Chat has new_messages and new_rants properties that return only messages and rants since the last time they were read.

Usage:

I tried to document the wrapper well, so help("cocorum") should work. Note, you are only expected to create a RumbleAPI() and / or ssechat.SSEChat() object, and work with everything through them.

Most attributes that are not added features have the same name as the direct JSON counterparts, with the exception of adding prefixes to some things that have the same name in the JSON as Python builtin functions. For example, thing/id in JSON is thing.thing_id in this Python wrapper.

from cocorum import RumbleAPI
from cocorum.localvars import *
import time

#API_URL is either your Rumble Live Stream API URL with key,
#or if you are also running GlobalGamer2015's RumBot, use http://localhost:9843/api/ls
#to use RumBot's API passthrough and reduce unnecessary API traffic.
api = RumbleAPI(API_URL, refresh_rate = 10)

print(api.username)
print(api.latest_follower)

if api.latest_subscriber:
    print(api.latest_subscriber, "subscribed for $" + str(api.latest_subscriber.amount_dollars))

#RumbleLivestream objects returned by RumbleAPI properties are deep: When queried, they will pull new information via their parent RumbleAPI object.
livestream = api.latest_livestream #None if there is no stream running

if livestream:
    if livestream.visibility != STREAM_VIS_PUBLIC:
        print("Stream is not public.")

    #Get messages for one minute
    start_time = time.time()
    while time.time() - start_time < 60:
        for message in livestream.chat.new_messages:
            print(message.username, "said", message)
        time.sleep(0.1)

Experimental SSE chat submodule

This part of cocorum is not part of the official Rumble Live Stream API, but may provide a more reliable method of ensuring all chat messages are received.

from cocorum import ssechat

chat = ssechat.SSEChat(stream_id = stream_id) #Stream ID can be base 10 or 36
chat.clear_mailbox() #Erase messages that were still visible before we connected

#Get messages for one minute
start_time = time.time()
while time.time() - start_time < 60:
    msg = chat.get_message() #Hangs until a new message arrives
    print(msg.user.username, "said", msg)

Conclusion

Hope this helps!

I, Wilbur Jaywright, and my brand, Marswide BGL, have no official association with Rumble Corp. beyond that of a normal user and/or channel on the Rumble Video platform. This wrapper is not officially endorsed by Rumble Corp. or its subsidiaries.

S.D.G.

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

cocorum-1.4.2.tar.gz (365.3 kB view details)

Uploaded Source

Built Distribution

cocorum-1.4.2-py3-none-any.whl (25.6 kB view details)

Uploaded Python 3

File details

Details for the file cocorum-1.4.2.tar.gz.

File metadata

  • Download URL: cocorum-1.4.2.tar.gz
  • Upload date:
  • Size: 365.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for cocorum-1.4.2.tar.gz
Algorithm Hash digest
SHA256 79a4eae1a8577b0eead27daffef9b42340734b204905a3d78e7ab65ad1a90099
MD5 b24fcb1ca8e15e123545d5fe98870203
BLAKE2b-256 6653f81abf7003572d86bf620982d7466707409bf0721df2471410a4868bc8d6

See more details on using hashes here.

File details

Details for the file cocorum-1.4.2-py3-none-any.whl.

File metadata

  • Download URL: cocorum-1.4.2-py3-none-any.whl
  • Upload date:
  • Size: 25.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for cocorum-1.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 765424588ef57650559fdcd6733fdc902884bcc3e160801a378dac6a4c8f7030
MD5 d90cb35f2ce2b9169844e415cd7d1ead
BLAKE2b-256 0fce079bafe6c83bd04bfc2287fc53cf3702b15722103b41c3f5b8a9eab5e10d

See more details on using hashes here.

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