client
Contains the Client, which is the core object at the center of all ro.py applications.
Client
¶
Represents a Roblox client.
Attributes:
Name | Type | Description |
---|---|---|
requests |
Requests
|
The requests object, which is used to send requests to Roblox endpoints. |
url_generator |
URLGenerator
|
The URL generator object, which is used to generate URLs to send requests to endpoints. |
presence |
PresenceProvider
|
The presence provider object. |
thumbnails |
ThumbnailProvider
|
The thumbnail provider object. |
delivery |
DeliveryProvider
|
The delivery provider object. |
chat |
ChatProvider
|
The chat provider object. |
account |
AccountProvider
|
The account provider object. |
Source code in roblox/client.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 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 142 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 195 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 252 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 424 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 |
|
__init__(token=None, base_url='roblox.com')
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
token |
str
|
A .ROBLOSECURITY token to authenticate the client with. |
None
|
base_url |
str
|
The base URL to use when sending requests. |
'roblox.com'
|
Source code in roblox/client.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
get_asset(asset_id)
async
¶
Gets an asset with the passed ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
asset_id |
int
|
A Roblox asset ID. |
required |
Returns:
Type | Description |
---|---|
EconomyAsset
|
An Asset. |
Source code in roblox/client.py
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 |
|
get_authenticated_user(expand=True)
async
¶
Grabs the authenticated user.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
expand |
bool
|
Whether to return a User (2 requests) rather than a PartialUser (1 request) |
True
|
Returns:
Type | Description |
---|---|
Union[User, PartialUser]
|
The authenticated user. |
Source code in roblox/client.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
|
get_badge(badge_id)
async
¶
Gets a badge with the passed ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
badge_id |
int
|
A Roblox badge ID. |
required |
Returns:
Type | Description |
---|---|
Badge
|
A Badge. |
Source code in roblox/client.py
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 |
|
get_base_asset(asset_id)
¶
Gets a base asset.
Note
This method does not send any requests - it just generates an object. For more information on bases, please see Bases.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
asset_id |
int
|
A Roblox asset ID. |
required |
Returns:
Type | Description |
---|---|
BaseAsset
|
A BaseAsset. |
Source code in roblox/client.py
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 |
|
get_base_badge(badge_id)
¶
Gets a base badge.
Note
This method does not send any requests - it just generates an object. For more information on bases, please see Bases.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
badge_id |
int
|
A Roblox badge ID. |
required |
Returns:
Type | Description |
---|---|
BaseBadge
|
A BaseBadge. |
Source code in roblox/client.py
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 |
|
get_base_gamepass(gamepass_id)
¶
Gets a base gamepass.
Note
This method does not send any requests - it just generates an object. For more information on bases, please see Bases.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gamepass_id |
int
|
A Roblox gamepass ID. |
required |
Source code in roblox/client.py
539 540 541 542 543 544 545 546 547 548 549 550 551 552 |
|
get_base_group(group_id)
¶
Gets a base group.
Note
This method does not send any requests - it just generates an object. For more information on bases, please see Bases.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
group_id |
int
|
A Roblox group ID. |
required |
Returns:
Type | Description |
---|---|
BaseGroup
|
A BaseGroup. |
Source code in roblox/client.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
|
get_base_place(place_id)
¶
Gets a base place.
Note
This method does not send any requests - it just generates an object. For more information on bases, please see Bases.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
place_id |
int
|
A Roblox place ID. |
required |
Returns:
Type | Description |
---|---|
BasePlace
|
A BasePlace. |
Source code in roblox/client.py
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 |
|
get_base_plugin(plugin_id)
¶
Gets a base plugin.
Note
This method does not send any requests - it just generates an object. For more information on bases, please see Bases.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
plugin_id |
int
|
A Roblox plugin ID. |
required |
Returns:
Type | Description |
---|---|
BasePlugin
|
A BasePlugin. |
Source code in roblox/client.py
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 |
|
get_base_universe(universe_id)
¶
Gets a base universe.
Note
This method does not send any requests - it just generates an object. For more information on bases, please see Bases.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
universe_id |
int
|
A Roblox universe ID. |
required |
Returns:
Type | Description |
---|---|
BaseUniverse
|
A BaseUniverse. |
Source code in roblox/client.py
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 |
|
get_base_user(user_id)
¶
Gets a base user.
Note
This method does not send any requests - it just generates an object. For more information on bases, please see Bases.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user_id |
int
|
A Roblox user ID. |
required |
Returns:
Type | Description |
---|---|
BaseUser
|
A BaseUser. |
Source code in roblox/client.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|
get_group(group_id)
async
¶
Gets a group by its ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
group_id |
int
|
A Roblox group ID. |
required |
Returns:
Type | Description |
---|---|
Group
|
A Group. |
Source code in roblox/client.py
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
|
get_place(place_id)
async
¶
Gets a place with the passed ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
place_id |
int
|
A Roblox place ID. |
required |
Returns:
Type | Description |
---|---|
Place
|
A Place. |
Source code in roblox/client.py
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
|
get_places(place_ids)
async
¶
Grabs a list of places corresponding to each ID in the list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
place_ids |
List[int]
|
A list of Roblox place IDs. |
required |
Returns:
Type | Description |
---|---|
List[Place]
|
A list of Places. |
Source code in roblox/client.py
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 |
|
get_plugin(plugin_id)
async
¶
Grabs a plugin with the passed ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
plugin_id |
int
|
A Roblox plugin ID. |
required |
Returns:
Type | Description |
---|---|
Plugin
|
A Plugin. |
Source code in roblox/client.py
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
|
get_plugins(plugin_ids)
async
¶
Grabs a list of plugins corresponding to each ID in the list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
plugin_ids |
List[int]
|
A list of Roblox plugin IDs. |
required |
Returns:
Type | Description |
---|---|
List[Plugin]
|
A list of Plugins. |
Source code in roblox/client.py
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
|
get_universe(universe_id)
async
¶
Gets a universe with the passed ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
universe_id |
int
|
A Roblox universe ID. |
required |
Returns:
Type | Description |
---|---|
Universe
|
A Universe. |
Source code in roblox/client.py
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
|
get_universes(universe_ids)
async
¶
Grabs a list of universes corresponding to each ID in the list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
universe_ids |
List[int]
|
A list of Roblox universe IDs. |
required |
Returns:
Type | Description |
---|---|
List[Universe]
|
A list of Universes. |
Source code in roblox/client.py
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
get_user(user_id)
async
¶
Gets a user with the specified user ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user_id |
int
|
A Roblox user ID. |
required |
Returns:
Type | Description |
---|---|
User
|
A user object. |
Source code in roblox/client.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
|
get_user_by_username(username, exclude_banned_users=False, expand=True)
async
¶
Grabs a user corresponding to the passed username.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
username |
str
|
A Roblox username. |
required |
exclude_banned_users |
bool
|
Whether to exclude banned users from the data. |
False
|
expand |
bool
|
Whether to return a User (2 requests) rather than a RequestedUsernamePartialUser (1 request) |
True
|
Returns:
Type | Description |
---|---|
Union[RequestedUsernamePartialUser, User]
|
A User or RequestedUsernamePartialUser depending on the expand argument. |
Source code in roblox/client.py
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
|
get_users(user_ids, exclude_banned_users=False, expand=False)
async
¶
Grabs a list of users corresponding to each user ID in the list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user_ids |
List[int]
|
A list of Roblox user IDs. |
required |
exclude_banned_users |
bool
|
Whether to exclude banned users from the data. |
False
|
expand |
bool
|
Whether to return a list of Users (2 requests) rather than PartialUsers (1 request) |
False
|
Returns:
Type | Description |
---|---|
Union[List[PartialUser], List[User]]
|
A List of Users or partial users. |
Source code in roblox/client.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
|
get_users_by_usernames(usernames, exclude_banned_users=False, expand=False)
async
¶
Grabs a list of users corresponding to each username in the list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
usernames |
List[str]
|
A list of Roblox usernames. |
required |
exclude_banned_users |
bool
|
Whether to exclude banned users from the data. |
False
|
expand |
bool
|
Whether to return a list of Users (2 requests) rather than RequestedUsernamePartialUsers (1 request) |
False
|
Returns:
Type | Description |
---|---|
Union[List[RequestedUsernamePartialUser], List[User]]
|
A list of User or RequestedUsernamePartialUser, depending on the expand argument. |
Source code in roblox/client.py
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 |
|
set_token(token=None)
¶
Authenticates the client with the passed .ROBLOSECURITY token. This method does not send any requests and will not throw if the token is invalid.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
token |
Optional[str]
|
A .ROBLOSECURITY token to authenticate the client with. |
None
|
Source code in roblox/client.py
76 77 78 79 80 81 82 83 84 85 |
|
user_search(keyword, page_size=10, max_items=None)
¶
Search for users with a keyword.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keyword |
str
|
A keyword to search for. |
required |
page_size |
int
|
How many members should be returned for each page. |
10
|
max_items |
int
|
The maximum items to return when looping through this object. |
None
|
Returns:
Type | Description |
---|---|
PageIterator
|
A PageIterator containing RequestedUsernamePartialUser. |
Source code in roblox/client.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
|