cocorum.chatapi
The primary use from this module is the ChatAPI
class, a wrapper for Rumble's internal chat API. When passed credentials, it currently automatically creates an internal instance of cocorum.servicephp.ServicePHP()
to log in with, and includes links to the chat-related methods of ServicePHP()
(muting users for example).
All other classes are supporting sub-classes.
Internal chat API client
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. It also can do to-chat interactions, sometimes via Service.PHP.
Example usage:
from cocorum import chatapi
#Additionally pass username and password for to-chat interactions
chat = chatapi.ChatAPI(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 and (msg := chat.get_message()):
print(msg.user.username, "said", msg)
S.D.G.
ChatAPI
The Rumble internal chat API
Source code in cocorum/chatapi.py
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 |
|
history
property
The chat history, trimmed to history_len
session_cookie
property
The session cookie we are logged in with
stream_id_b10
property
The chat ID in use
__init__(stream_id, username=None, password=None, session=None, history_len=1000)
The Rumble internal chat API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
stream_id
|
(int, str)
|
Stream ID in base 10 or 36. |
required |
username
|
str
|
Username to login with. Defaults to no login. |
None
|
password
|
str
|
Password to log in with. Defaults to no login. |
None
|
session
|
(str, dict)
|
Session token or cookie dict to authenticate with. Defaults to getting new session with username and password. |
None
|
history_len
|
int
|
Length of message history to store. Defaults to 1000. |
1000
|
Source code in cocorum/chatapi.py
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 |
|
__next_event_json()
Wait for the next event from the SSE and parse the JSON
Source code in cocorum/chatapi.py
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 |
|
clear_mailbox()
Delete anything in the mailbox
Source code in cocorum/chatapi.py
681 682 683 |
|
command(command_message)
Send a native chat command
Parameters:
Name | Type | Description | Default |
---|---|---|---|
command_message
|
str
|
The message you would send to launch this command in chat. |
required |
Returns:
Name | Type | Description |
---|---|---|
JSON |
dict
|
The JSON returned by the command. |
Source code in cocorum/chatapi.py
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 |
|
delete_message(message)
Delete a message in chat.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message
|
int
|
Object which when converted to integer is the target message ID. |
required |
Source code in cocorum/chatapi.py
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 |
|
get_message()
Return the next chat message (parsing any additional data), waits for it to come in, returns None if chat closed
Source code in cocorum/chatapi.py
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 |
|
load_badges(jsondata)
Create our dictionary of badges from an SSE data JSON
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
A JSON data block from an SSE event. |
required |
Source code in cocorum/chatapi.py
711 712 713 714 715 716 717 718 |
|
mute_user(user, duration=None, total=False)
Mute a user.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user
|
str
|
Username to mute. |
required |
duration
|
int
|
How long to mute the user in seconds. Defaults to infinite. |
None
|
total
|
bool
|
Wether or not they are muted across all videos. Defaults to False, just this video. |
False
|
Source code in cocorum/chatapi.py
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 |
|
parse_init_data(jsondata)
Extract initial chat data from the SSE init event JSON
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
The JSON data returned by the initial SSE connection. |
required |
Source code in cocorum/chatapi.py
647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 |
|
pin_message(message)
Pin a message
Source code in cocorum/chatapi.py
574 575 576 577 |
|
send_message(text, channel_id=None)
Send a message in chat.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
The message text. |
required |
channel_id
|
int
|
Numeric ID of the channel to use. Defaults to None. |
None
|
Returns:
Name | Type | Description |
---|---|---|
ID |
int
|
The ID of the sent message. |
User |
ChatAPIUser
|
Your current chat user information. |
Source code in cocorum/chatapi.py
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 |
|
unmute_user(user)
Unmute a user.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user
|
str
|
Username to unmute |
required |
Source code in cocorum/chatapi.py
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 |
|
unpin_message(message=None)
Unpin the pinned message
Source code in cocorum/chatapi.py
579 580 581 582 583 584 585 |
|
update_channels(jsondata)
Update our dictionary of channels from an SSE data JSON
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
A JSON data block from an SSE event. |
required |
Source code in cocorum/chatapi.py
698 699 700 701 702 703 704 705 706 707 708 709 |
|
update_mailbox(jsondata)
Parse chat messages from an SSE data JSON
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
A JSON data block from an SSE event. |
required |
Source code in cocorum/chatapi.py
671 672 673 674 675 676 677 678 679 |
|
update_users(jsondata)
Update our dictionary of users from an SSE data JSON
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
A JSON data block from an SSE event. |
required |
Source code in cocorum/chatapi.py
685 686 687 688 689 690 691 692 693 694 695 696 |
|
ChatAPIChannel
Bases: ChatAPIChatter
A channel in the SSE chat
Source code in cocorum/chatapi.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
|
channel_id
property
The ID of this channel in base 10
channel_id_b10
property
The ID of this channel in base 10
channel_id_b36
property
The ID of this channel in base 36
is_appearing
property
Is the user of this channel still appearing as it?
user_id
property
The numeric ID of the user of this channel
user_id_b10
property
The numeric ID of the user of this channel in base 10
user_id_b36
property
The numeric ID of the user of this channel in base 36
__init__(jsondata, chat)
A channel in the internal chat API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
The JSON data block for the channel. |
required |
chat
|
ChatAPI
|
The ChatAPI object that spawned us. |
required |
Source code in cocorum/chatapi.py
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|
ChatAPIChatter
Bases: JSONUserAction
, ChatAPIObj
A user or channel in the internal chat API (abstract)
Source code in cocorum/chatapi.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|
link
property
The user's subpage of Rumble.com
__init__(jsondata, chat)
A user or channel in the internal chat API (abstract)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
The JSON data block for the user/channel. |
required |
chat
|
ChatAPI
|
The ChatAPI object that spawned us. |
required |
Source code in cocorum/chatapi.py
47 48 49 50 51 52 53 54 55 |
|
ChatAPIMessage
Bases: ChatAPIObj
A single chat message in the internal chat API
Source code in cocorum/chatapi.py
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 |
|
channel
property
Reference to the channel that posted this message, if there was one
channel_id
property
The numeric ID of the channel who posted the message, if there is one
channel_id_b10
property
The ID of the channel who posted the message in base 10
channel_id_b36
property
The ID of the channel who posted the message in base 36
is_rant
property
Is this message a rant?
message_id
property
The unique numerical ID of the chat message in base 10
message_id_b10
property
The unique numerical ID of the chat message in base 10
message_id_b36
property
The unique numerical ID of the chat message in base 36
raid_notification
property
Are we a raid notification? Returns associated JSON data if yes, False if no
rant_duration
property
The duration the rant will show for, returns 0 if message is not a rant
rant_expires_on
property
When the rant expires, returns message creation time if message is not a rant
rant_price_cents
property
The price of the rant, returns 0 if message is not a rant
text
property
The text of the message
time
property
The time the message was sent on, in seconds since the Epoch UTC
user
property
Reference to the user who posted this message
user_id
property
The numerical ID of the user who posted the message in base 10
user_id_b10
property
The numeric ID of the user in base 10
user_id_b36
property
The numeric ID of the user in base 36
__eq__(other)
Compare this chat message with another
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other
|
(str, ChatAPIMessage)
|
Object to compare to. |
required |
Returns:
Name | Type | Description |
---|---|---|
Comparison |
(bool, None)
|
Did it fit the criteria? |
Source code in cocorum/chatapi.py
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 |
|
__init__(jsondata, chat)
A single chat message in the internal chat API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
The JSON data block for the message. |
required |
chat
|
ChatAPI
|
The ChatAPI object that spawned us. |
required |
Source code in cocorum/chatapi.py
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 |
|
__int__()
The chat message in integer (ID) form
Source code in cocorum/chatapi.py
310 311 312 |
|
__str__()
The chat message in string form
Source code in cocorum/chatapi.py
306 307 308 |
|
ChatAPIObj
Bases: JSONObj
Object in the internal chat API
Source code in cocorum/chatapi.py
32 33 34 35 36 37 38 39 40 41 42 43 |
|
__init__(jsondata, chat)
Object in the internal chat API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
The JSON data block for the object. |
required |
chat
|
ChatAPI
|
The ChatAPI object that spawned us. |
required |
Source code in cocorum/chatapi.py
34 35 36 37 38 39 40 41 42 43 |
|
ChatAPIUser
Bases: ChatAPIChatter
User in the internal chat API
Source code in cocorum/chatapi.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
|
badges
property
Badges the user has
channel_id
property
The numeric channel ID that the user is appearing with in base 10
channel_id_b10
property
The numeric channel ID that the user is appearing with in base 10
channel_id_b36
property
The numeric channel ID that the user is appearing with in base 36
color
property
The color of our username (RGB tuple)
is_follower
property
Is this user following the livestreaming channel?
user_id
property
The numeric ID of the user in base 10
user_id_b10
property
The numeric ID of the user in base 10
user_id_b36
property
The numeric ID of the user in base 36
__init__(jsondata, chat)
A user in the internal chat API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
The JSON data block for the user. |
required |
chat
|
ChatAPI
|
The ChatAPI object that spawned us. |
required |
Source code in cocorum/chatapi.py
64 65 66 67 68 69 70 71 72 73 74 |
|
__int__()
The user as an integer (it's ID in base 10)
Source code in cocorum/chatapi.py
76 77 78 |
|
ChatAPIUserBadge
Bases: ChatAPIObj
A badge of a user
Source code in cocorum/chatapi.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
|
icon
property
The badge's icon as a bytestring
icon_url
property
The URL of the badge's icon
label
property
A dictionary of lang:label pairs
__eq__(other)
Check if this badge is equal to another
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other
|
(str, ChatAPIUserBadge)
|
Object to compare to. |
required |
Returns:
Name | Type | Description |
---|---|---|
Comparison |
(bool, None)
|
Did it fit the criteria? |
Source code in cocorum/chatapi.py
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
|
__init__(slug, jsondata, chat)
A user badge in the internal chat API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jsondata
|
dict
|
The JSON data block for the user badge. |
required |
chat
|
ChatAPI
|
The ChatAPI object that spawned us. |
required |
Source code in cocorum/chatapi.py
198 199 200 201 202 203 204 205 206 207 208 |
|
__str__()
The chat user badge in string form
Source code in cocorum/chatapi.py
228 229 230 |
|
S.D.G.