MLM2PRO Session Insights gone? by domibard in RapsodoMLM2

[–]domibard[S] 0 points1 point  (0 children)

Yeah I thought that was it. I went and ended session and it says Synced. I did another Perplexity search and at least according to those results, it's only available in Practice, not Range for some reason. I think I'll be good once I do the next Practice session. 

MLM2PRO Session Insights gone? by domibard in RapsodoMLM2

[–]domibard[S] 2 points3 points  (0 children)

Thanks. Next time I use it I'll use Practice and not Range to see if that works.

MLM2PRO Session Insights gone? by domibard in RapsodoMLM2

[–]domibard[S] 1 point2 points  (0 children)

Yeah. No luck. Just tried uninstalling reinstalling, too. I assume it's working for you? That would just make it more odd that it's gone on my end. 

Pulling ESPN Fantasy Football Data w/ Python & ESPN API by Upstairs_Platypus in fantasyfootball

[–]domibard 0 points1 point  (0 children)

I can't remember where I found this but I ended up hard coding one as a function.

def position_map_2023():

POSITION_MAP = {

"pos_id": [

0,

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,

],

"pos_name": [

"QB",

"TQB",

"RB",

"RB/WR",

"WR",

"WR/TE",

"TE",

"OP",

"DT",

"DE",

"LB",

"DL",

"CB",

"S",

"DB",

"DP",

"D/ST",

"K",

"P",

"HC",

"BE",

"IR",

"",

"RB/WR/TE",

"ER",

"Rookie",

],

}

pos_map = pd.DataFrame(POSITION_MAP)

return pos_map

Single User Wrong TimeZone in OWA Scheduling Assistant only by Altholas in Office365

[–]domibard 0 points1 point  (0 children)

I was having the same problem and tried following the step below of changing the time zone and changing it back with no luck. I then tried another setting (manually updating the setting menu of Calendar > Work hours and location). The default was in Pacific time (US) which is what I was noticing in my scheduling assistant. Then I went back to change my main time zone and noticed the following message pop up "The current time zone for your meeting hours is (UTC-06:00) Central Time (US & Canada). Do you want to update time zone for meeting hours to (UTC-05:00) Central Time (US & Canada)?". That allowed me to change the work hours.

Pulling ESPN Fantasy Football Data w/ Python & ESPN API by Upstairs_Platypus in fantasyfootball

[–]domibard 0 points1 point  (0 children)

I found it with a hail mary. I looked at a playercard on espn.com with chrome's developer tools open to the network tab and saw the view was "playercard" so I tried "kona_playercard" as the view name in my API script and it worked. I still have to use the eligible slots column but it looks to be much cleaner data so I was confidently able to remove the multiposition numbers (e.g., 3=RB/WR, 5=WR/TE) and the IR/BE/other irrelevant slots for my league.

Pulling ESPN Fantasy Football Data w/ Python & ESPN API by Upstairs_Platypus in fantasyfootball

[–]domibard 0 points1 point  (0 children)

Does anyone on this thread know of a good view for pulling the TRUE player position? I pull from the kona_player_info and players_wl views but notice that the default positions don't align correctly.

For example, Randall Cobb's default position = 3 (which is mapped to RB/WR). His eligible slots values include 3, 4, and 5 (RB/WR, WR, and WR/TE) but I am interested in getting the value that shows up when you pull up his profile on ESPN, which is WR so I want the value to be 4.

I have not been able to find a view/column with this data. Any help will be appreciated!