An open API service indexing awesome lists of open source software.

https://github.com/imdarshangk/silent-auction-program

This is a simple Python program that simulates a silent auction. Users can enter their names and bid amounts, and the program determines the winner with the highest bid.
https://github.com/imdarshangk/silent-auction-program

auctuin bidding python pythonprojects

Last synced: about 2 months ago
JSON representation

This is a simple Python program that simulates a silent auction. Users can enter their names and bid amounts, and the program determines the winner with the highest bid.

Awesome Lists containing this project

README

          

# Silent Auction Program 💰

## Overview
This repository contains a Python implementation of a Silent Auction program. The program allows participants to place anonymous bids on items, and at the end of the auction, the highest bid is revealed.

## Features
- Allows participants to submit bids for auction items.
- Keeps bids anonymous.
- Displays the highest bid and bidder at the end of the auction.

## Clearing the Console
This program includes functionality to clear the console screen between bids. The method used to clear the console varies by operating system:

- Windows: The console is cleared using the 'cls' command.
- Linux/MacOS: The console is cleared using the 'clear' command.