Story
A representation of a Story on Wattpad. Note: Stories are singletons, unique as per their ID. Two story classes with the same ID are the same.
Attributes:
Name | Type | Description |
---|---|---|
id |
str
|
Lowercased ID of this Story. |
user |
User
|
The User who authored this Story. |
recommended |
list[Story]
|
Stories recommended from this Story. |
data |
StoryModel
|
Story Data from the Wattpad API. |
Source code in src/wattpad/wattpad.py
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 |
|
__init__(id, user=None, **kwargs)
#
Create a Story object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
str
|
The ID of the Story. |
required |
user |
User
|
The User who authored this Story. |
None
|
Source code in src/wattpad/wattpad.py
354 355 356 357 358 359 360 361 362 363 364 365 |
|
fetch(include=False)
async
#
Populates a Story's data. Call this method after instantiation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
include |
bool | StoryModelFieldsType
|
Fields to fetch. True fetches all fields. Defaults to False. |
False
|
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
The raw API Response. |
Source code in src/wattpad/wattpad.py
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 |
|
fetch_recommended(include=False, limit=None, offset=None)
async
#
Fetch Stories recommended from this Story.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
include |
bool | StoryModelFieldsType
|
Fields to fetch of the recommended stories. True fetches all fields. Defaults to False. |
False
|
limit |
Optional[int]
|
Maximum number of users to return at once. Use this alongside |
None
|
offset |
Optional[int]
|
Number of users to skip before returning followers. Use this alongside |
None
|
Returns:
Name | Type | Description |
---|---|---|
dict |
list
|
The raw API Response. |
Source code in src/wattpad/wattpad.py
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 |
|