plugins
This module contains classes intended to parse and deal with data from Roblox plugin information endpoints.
Plugin
¶
Bases: BasePlugin
Represents a Roblox plugin. It is intended to parse data from https://develop.roblox.com/v1/plugins.
Attributes:
Name | Type | Description |
---|---|---|
id |
int
|
The ID of the plugin. |
name |
str
|
The name of the plugin. |
description |
str
|
The plugin's description. |
comments_enabled |
bool
|
Whether comments are enabled or disabled. |
version_id |
int
|
The plugin's current version ID. |
created |
datetime
|
When the plugin was created. |
updated |
datetime
|
When the plugin was updated. |
Source code in roblox/plugins.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
__init__(client, data)
¶
Attributes:
Name | Type | Description |
---|---|---|
client |
The Client object, which is passed to all objects this Client generates. |
|
data |
data to make the magic happen. |
Source code in roblox/plugins.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|