Btw, I wanna start first by saying that this module is genius and I love it.
Anyway, if trying something like df.column == Anything it returns a TypeError:
Could not compare <class 'anything.AnythingType'> type with Series
This is easily circumventable by using df.column.values, but I still wanted to let you know.
Surprisingly, it poses no problems with a dataframe, doing something like df[['column']] == Anything works no problemo.