Disabling Pylint no member- E1101 error for specific libraries

Michael WS picture Michael WS · Nov 27, 2015 · Viewed 17.9k times · Source

Is there anyway to hide E1101 errors for objects that are created from a specific library? Our large repository is littered with #pylint: disable=E1101 around various objects created by pandas.

For example, pylint will throw a no member error on the following code:

import pandas.io.data
import pandas as pd
spy = pandas.io.data.DataReader("SPY", "yahoo")
spy.to_csv("test.csv")
spy = pd.read_csv("test.csv")
close_px = spy.ix["2012":]

Will have the following errors:

E:  6,11: Instance of 'tuple' has no 'ix' member (no-member)
E:  6,11: Instance of 'TextFileReader' has no 'ix' member (no-member)

Answer

carabas picture carabas · Jan 30, 2016

You can mark their attributes as dynamically generated using generated-members option.

E.g. for pandas:

generated-members=pandas.*