I was using networkx 1.9 with python 2.7 and decided to update to the latest 1.10 version. when using the bipartite graph generator function configuration_model, I found that what I what using before :
import networkx as nx
from networkx.algorithms import bipartite
import networkx.algorithms.bipartite as bipartite
aseq=[1 2 1]
bseq=[2 1 1]
G =bipartite_configuration_model(aseq,bseq, create_using=None, seed=None)
new version:
G =configuration_model(aseq, bseq, create_using=None, seed=None)
configuration_model() got multiple values for keyword argument 'create_using'
did not work anymore. Any idea what is the create_using= should be ? I read the source file and could not see what was needed !