Loading data for Moscow exchange returns info from all of the boards and trading modes.
import pandas_datareader as pdr
pdr.DataReader('sber', 'moex', '2020-07-02', '2020-07-02')
The code returns 9 rows for each board (trading mode) for the same date.
It seems to be better if pdr could return data from the main board only (for each ticker). It would lead to less misunderstanding the results.
I also would like to try this as my first PR