Code Monkey home page Code Monkey logo

rumblepy's Introduction

RumblePy

Unofficial Python wrapper for automating a Rumble account (Rumble.com).

  • This is a work in progress and is primitive at best.
  • RumblePy is a self-botting framework and acts as a user-account, not to be confused with the functionality of Rumble.com's Official Admin/Editor API.
  • In no way am I affiliated with Rumble.com.
  • This module is not intended for public use and I, the author, am not responsible for any damages to any party in which are caused by the use of this software.

Example:

from RumblePy import RumbleBot

rumble = RumbleBot(authCfg="auth.cfg", opts={"verbose": True})

print ("Latest Version:  " + rumble.latest_version)
print ("Current Version: " + rumble.__version__)

"""
    // Auth.cfg: //
    <username>
    <password>

    // User/Pass Alternative: //
    r = RumbleBot(username="USERNAME_OR_EMAIL", password="PASSWORD", opts={"verbose": True})
"""

rumble.login() # User/Pass alternative (slower)

# rumble.login(session="SESSION_ID") # Static session login alternative (faster)

for video in rumble.search.videos("test"):
    print ("Title:")
    print("\t" + video["title"])
    print("Slug:")
    print("\t" + video["slug"])
    print("Thumbnail:")
    print("\t" + video["thumbnail"])
    print("Views:")
    print("\t" + video["views"])
    print("Duration:")
    print("\t" + video["duration"])
    print("Time:")
    print("\t" + str(video["time"]))
    print("Channel:")
    print("\t" + video["channel"])
    print("Rumbles:")
    print("\t" + (video["rumbles"] if video["rumbles"] else "N/A"))
    print()

#print(rumble.search.channels("test"))

#print(rumble.feeds.subscriptions())


Methods:

Login to Rumble.com. This must be called on the instance before use of all other [authenticated] methods.

Comment on a video/post specified by postId.

Delete a comment specified by commentId. isRestore must be either True or False and will restore a deleted comment if True, respective to the commentId.

Reply to a comment specified by commentId under a video/post specified by postId.

Subscribe to a channel specified by slug and title (???).

Upvote/Downvote on a video/post specified by postId. vote must be either 1 (upvote) or -1 (downvote).

Fetch featured channels from Rumble.com's homepage.

Fetch your feed from Rumble.com's homepage.

Search for channels by string.

Search for videos by string.

Project Goals:

  • Feature Request: Post a video

  • Feature Request: Async

  • Feature Request: Comment enumeration

  • Feature Request: Support for proxies

rumblepy's People

Contributors

a3r0id avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.