Prospects¶
prospects
¶
Prospect endpoints for NFL Draft Buzz.
Provides get_prospect() to fetch and parse a complete prospect
profile including stats from two separate page fetches.
Prospects
¶
Bases: BaseSDK
Sub-SDK for DraftBuzz prospect profile pages.
Source code in src/griddy/draftbuzz/basesdk.py
get_prospect
¶
Fetch a complete prospect profile including stats.
Makes two requests: one for the profile page and one for the
stats page, combining results into a single ProspectProfile.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
slug
|
str
|
The prospect URL slug (e.g.
|
required |
position
|
str
|
Canonical position group (e.g. |
required |
timeout_ms
|
Optional[int]
|
Optional timeout in milliseconds. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
A |
ProspectProfile
|
class: |
ProspectProfile
|
fields populated including stats. |
Source code in src/griddy/draftbuzz/endpoints/prospects.py
get_prospect_async
async
¶
Async version of :meth:get_prospect.