class documentation

class Community:

Constructor: Community(list_of_buyers, name)

View In Hierarchy

A Community is a group of buyers.

Method __init__ Instantiates a community.
Method __str__ Undocumented
Method add_buyer Undocumented
Method list_of_buyers.setter Undocumented
Property list_of_buyers List of buyers that belong to this community
Property name Community name
Instance Variable _list_of_buyers Undocumented
Instance Variable _name Undocumented
def __init__(self, list_of_buyers, name):

Instantiates a community.

Parameters
list_of_buyersbuyers to add to community
namename to ID community in results analysis
def __str__(self):

Undocumented

def add_buyer(self, buyer):

Undocumented

@list_of_buyers.setter
def list_of_buyers(self, new_list):

Undocumented

@property
list_of_buyers =

List of buyers that belong to this community

@property
name =

Community name

_list_of_buyers =

Undocumented

_name =

Undocumented