create_new_stock.py 185 B

123456
  1. import model
  2. from admin_console import cleanup
  3. if __name__ == '__main__':
  4. print(model.new_stock(input('How long will the initial selling be available? (minutes):')))
  5. cleanup()