nhl_data 0.1.0

A way to call the NHL api for rust programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
mod player;
mod skaters;
mod goalies;
mod teams;
mod clubs;
mod roster;
mod schedule;
mod scores;
mod game;


use serde_json::Value;
use indexmap::IndexMap;
use crate::Puck;


/// # Puck util's
/// 
impl Puck {
    /// Create a new Puck client.
    ///
    /// # Example
    /// 
    /// ```
    /// use nhl_data::Puck;
    /// let client = Puck::new();
    /// ```
    pub fn new() -> Puck{
        Puck {
            get_client: reqwest::Client::new(),
            print_keys : false,
            api_limit : 5,
        }
    }

    /// Set whether to print keys from API responses.
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// let client = Puck::new().set_print(true);
    /// ```
    pub fn set_print(mut self, setting : bool) -> Puck{
        self.print_keys = setting;
        self
    }
    /// Get the underlying reqwest client.
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// let client = Puck::new();
    /// let reqwest_client = client.open();
    /// ```
    pub fn open(self) -> reqwest::Client{
        self.get_client

    }
}
/// # Players
///
// Methods for querying player-related NHL stats.
impl Puck {
    /// Get career stats for a player.
    ///
    /// # Arguments
    /// * `id` - Player ID
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_player_career_stats("8478402").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_player_career_stats(&self, id: &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(player::player_career_stats(&self, id).await?)
    }
    /// Get game log for a player for a season and game type.
    ///
    /// # Arguments
    /// * `id` - Player ID
    /// * `season` - Season string
    /// * `game_type` - Game type (2=regular, 3=playoff)
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_player_game_log("8478402", "20232024", "2").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_player_game_log(&self, id: &str, season : &str, game_type : &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(player::player_game_log(&self, id, season, game_type).await?)
    }
    /// Get current game log for a player.
    ///
    /// # Arguments
    /// * `id` - Player ID
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_player_game_log_now("8478402").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_player_game_log_now(&self, id: &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(player::player_game_log_now(&self, id).await?)
    }
    /// Get player spotlight data.
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_player_spotlight().await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_player_spotlight(&self) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(player::player_spotlight(&self).await?)
    }
}
    

/// # Skaters
///
// Methods for querying skater-related NHL stats.
impl Puck {
    /// Get current skater stats leaders.
    ///
    /// # Arguments
    /// * `category` - Stat category (can be empty)
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_current_skater_stats("goals").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_current_skater_stats(&self, category: &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(skaters::current_skater_stats(&self, category).await?)
    }
    /// Get skater stats leaders for a season and game type.
    ///
    /// # Arguments
    /// * `season` - Season string
    /// * `game_type` - Game type
    /// * `category` - Stat category
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_current_skater_stats_season_game_type("20242025", "2", "").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_current_skater_stats_season_game_type(&self, season : &str, game_type :&str, category: &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(skaters::current_skater_stats_season_game_type(&self, season, game_type, category).await?)
    }
}

/// # Goalies
///
// Methods for querying goalie-related NHL stats.
impl Puck {
    /// Get current goalie stats leaders.
    ///
    /// # Arguments
    /// * `category` - Stat category (can be empty)
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_current_goalie_stats("").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_current_goalie_stats(&self, category: &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(goalies::current_goalie_stats(&self, category).await?)
    }
    /// Get goalie stats leaders for a season and game type.
    ///
    /// # Arguments
    /// * `season` - Season string
    /// * `game_type` - Game type
    /// * `category` - Stat category
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_current_goalie_stats_season_game_type("20242025", "2", "").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_current_goalie_stats_season_game_type(&self, season: &str, game_type: &str, category: &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(goalies::current_goalie_stats_season_game_type(&self, season, game_type, category).await?)
    }
}
/// # Teams
///
// Methods for querying team-related NHL stats.
impl Puck {
    /// Get current team standings.
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_standings().await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_standings(&self) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(teams::team_standings(&self).await?)
    }
    /// Get team standings for a specific date.
    ///
    /// # Arguments
    /// * `date` - Date in YYYY-MM-DD format
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_standings_date("2023-11-10").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_standings_date(&self, date : &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(teams::team_standings_date(&self, date).await?)
    }
    /// Get team standings for each season.
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_standings_season().await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_standings_season(&self) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(teams::team_standings_season(&self).await?)
    }
}
/// # Clubs
///
// Methods for querying club-related NHL stats.
impl Puck {
    /// Get current stats for a club.
    ///
    /// # Arguments
    /// * `team` - Team code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_club_stats("TOR").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_club_stats(&self, team : &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(clubs::club_stats(&self, team).await?)
    }
    /// Get club stats for each season.
    ///
    /// # Arguments
    /// * `team` - Team code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_club_stats_season("TOR").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_club_stats_season(&self, team : &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(clubs::club_stats_season(&self, team).await?)
    }
    /// Get club stats for a season and game type.
    ///
    /// # Arguments
    /// * `team` - Team code
    /// * `season` - Season string
    /// * `game_type` - Game type
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_club_stats_season_game_type("TOR", "20232024", "2").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_club_stats_season_game_type(&self, team : &str, season : &str, game_type : &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(clubs::club_stats_season_game_type(&self, team, season, game_type).await?)
    }
    /// Get club scoreboard as of now.
    ///
    /// # Arguments
    /// * `team` - Team code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_club_scores("TOR").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_club_scores(&self, team : &str) -> Result<IndexMap<String, Value>, reqwest::Error> { 
        Ok(clubs::club_scores(&self, team).await?)
    }
}
/// # Roster
///
// Methods for querying roster-related NHL stats.
impl Puck {
    /// Get team roster as of now.
    ///
    /// # Arguments
    /// * `team` - Team code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_roster("TOR").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_roster(&self, team: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(roster::team_roster(&self, team).await?)
    }
    /// Get team roster for a specific season.
    ///
    /// # Arguments
    /// * `team` - Team code
    /// * `season` - Season string
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_roster_season("TOR", "20232024").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_roster_season(&self, team: &str, season: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(roster::team_roster_season(&self, team, season).await?)
    }
    /// Get all seasons played by a team.
    ///
    /// # Arguments
    /// * `team` - Team code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_played_seasons("TOR").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_played_seasons(&self, team: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(roster::team_played_seasons(&self, team).await?)
    }
    /// Get prospects for a team.
    ///
    /// # Arguments
    /// * `team` - Team code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_prospects("TOR").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_prospects(&self, team: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(roster::team_prospects(&self, team).await?)
    }
}
/// # Scores
///
// Methods for querying scores-related NHL stats.
impl Puck {
    /// Get daily scores as of now.
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_scores_now().await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_scores_now(&self) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(scores::scores_now(&self).await?)
    }
    /// Get daily scores for a specific date.
    ///
    /// # Arguments
    /// * `date` - Date in YYYY-MM-DD format
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_scores_date("2023-11-10").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_scores_date(&self, date: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(scores::scores_date(&self, date).await?)
    }
    /// Get overall scoreboard as of now.
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_scoreboard().await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_scoreboard(&self) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(scores::scoreboard(&self).await?)
    }
}
/// # Game
///
// Methods for querying game-related NHL stats.
impl Puck {
    /// Get play-by-play information for a game.
    ///
    /// # Arguments
    /// * `game_id` - Game ID
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_play_by_play("2023020001").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_play_by_play(&self, game_id: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(game::play_by_play(&self, game_id).await?)
    }
    /// Get landing page information for a game.
    ///
    /// # Arguments
    /// * `game_id` - Game ID
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_landing_page("2023020001").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_landing_page(&self, game_id: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(game::landing_page(&self, game_id).await?)
    }
    /// Get game odds for a country.
    ///
    /// # Arguments
    /// * `country_code` - Country code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_game_odds("US").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_game_odds(&self, country_code: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(game::game_odds(&self, country_code).await?)
    }
}
/// # Schedule
///
// Methods for querying schedule-related NHL stats.
impl Puck {
    /// Get team season schedule as of now.
    ///
    /// # Arguments
    /// * `team` - Team code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_schedule_now("TOR").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_schedule_now(&self, team: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::team_schedule_now(&self, team).await?)
    }
    /// Get team season schedule for a specific season.
    ///
    /// # Arguments
    /// * `team` - Team code
    /// * `season` - Season string
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_schedule_season("TOR", "20232024").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_schedule_season(&self, team: &str, season: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::team_schedule_season(&self, team, season).await?)
    }
    /// Get team monthly schedule as of now.
    ///
    /// # Arguments
    /// * `team` - Team code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_schedule_now_month("TOR").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_schedule_now_month(&self, team: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::team_schedule_now_month(&self, team).await?)
    }
    /// Get team monthly schedule for a specific date.
    ///
    /// # Arguments
    /// * `team` - Team code
    /// * `month` - Date in YYYY-MM format
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_schedule_at_month("TOR", "2023-11").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_schedule_at_month(&self, team: &str, month: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::team_schedule_at_month(&self, team, month).await?)
    }
    /// Get team weekly schedule for a specific date.
    ///
    /// # Arguments
    /// * `team` - Team code
    /// * `date` - Date in YYYY-MM-DD format
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_schedule_at_week("TOR", "2023-11-10").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_schedule_at_week(&self, team: &str, date: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::team_schedule_at_week(&self, team, date).await?)
    }
    /// Get team weekly schedule as of now.
    ///
    /// # Arguments
    /// * `team` - Team code
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_team_schedule_now_week("TOR").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_team_schedule_now_week(&self, team: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::team_schedule_now_week(&self, team).await?)
    }
    /// Get current NHL schedule.
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_schedule_now().await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_schedule_now(&self) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::schedule_now(&self).await?)
    }
    /// Get NHL schedule for a specific date.
    ///
    /// # Arguments
    /// * `date` - Date in YYYY-MM-DD format
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_schedule_date("2023-11-10").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_schedule_date(&self, date: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::schedule_date(&self, date).await?)
    }
    /// Get NHL schedule calendar as of now.
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_schedule_calendar().await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_schedule_calendar(&self) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::schedule_calendar(&self).await?)
    }
    /// Get NHL schedule calendar for a specific date.
    ///
    /// # Arguments
    /// * `date` - Date in YYYY-MM-DD format
    ///
    /// # Example
    /// ```
    /// use nhl_data::Puck;
    /// #[tokio::main]
    /// async fn main() {
    ///     let client = Puck::new();
    ///     let result = client.get_schedule_calendar_date("2023-11-10").await;
    ///     assert!(result.is_ok());
    /// }
    /// ```
    pub async fn get_schedule_calendar_date(&self, date: &str) -> Result<IndexMap<String, Value>, reqwest::Error> {
        Ok(schedule::schedule_calendar_date(&self, date).await?)
    }
}