convert this statement from sequential to parallel in python

Job ID: 30695037

Budget: $30 – $250 USD

convert this statement from sequential to parallel in python

print('Clustering Coefficient for All Nodes...')
ClusteringCoefficientDictionary = nx.clustering(DiGraphObject, weight='weight')

#Calculate the Alpha Centrality (Katz Centrality) for all nodes
print('Alpha Centrality for All Nodes..')
AlphaCentralityDictionary = nx.algorithms.centrality.katz_centrality_numpy(DiGraphObject, weight='weight')