python auctionserverzmq.py
python auctionclientzmq.py

In auctionserverzmq.py,
Change the numbidders for different numbers of players.

Students change auctionclientzmq.py
Mostly determinebid, but anything in that file is fair game.
I control auctionserverzmq.py.



All variables that a person that would like to use the games are at the very top just under the import statements seperate from the rest of the code and comments beside them telling them what they do. For server it's number of players, bot or not, and server IP / localhost. Only server/localhost for the clients.

One thing to be aware of is in the clients I imported the print function from python 3, because I really wanted the "end = ..." argument in the print function. So all print functions in the client need brackets around them.

