cowiz20/server.py
2020-04-13 22:07:38 +02:00

43 lines
786 B
Python
Executable File

#!/usr/bin/env python3
import random
import socket
import responder
from app_instance import api
from routes import *
import wiz_game
def main():
print("main started")
random.seed()
wiz_game.the_game.start_game()
api.run(port=19203, address="127.0.0.1")
exit(0)
# w.create_deck()
# w.add_player("p1", 1)
# w.add_player("p2", 2)
# w.add_player("p3", 3)
# w.add_player("p4", 4)
# w.deal_cards(1)
# print("round 2")
# w.deal_cards(2)
# print("round 3")
# w.deal_cards(3)
# print("round 4")
# w.deal_cards(4)
# print("round 12")
# w.deal_cards(12)
# print("round 13")
# w.deal_cards(13)
# print("round 14")
# w.deal_cards(14)
# print("round 15")
# w.deal_cards(15)
if __name__ == '__main__':
main()