Examples
Note how the two weekend days are skipped in the result.

In [2]:
import numpy as np
import pandas as pd
In [4]:
pd.bdate_range(start='2/2/2019', end='2/09/2019')
Out[4]:
DatetimeIndex(['2019-02-04', '2019-02-05', '2019-02-06', '2019-02-07',
               '2019-02-08'],
              dtype='datetime64[ns]', freq='B')