Skip to content
herepete edited this page Apr 16, 2019 · 2 revisions

Welcome to the football_manager_2 wiki!

I have used this as a project to learn and improve my python skills it started in 2017 as a 107 line program Today is it is nearer 4286 lines.

This is in a Beta state at the moment, but i wanted to upload what i had.

This has been written for Python 3.7 (and will currently only work in) mainly so i could make use of the breakpoints feature. You could probable use sed to remove the breakpoints if you really wanted to. When the game has moved from Beta (i am still ironing out bugs) i will make it backwards compatible to at least Python 3.6.

func_other_game_settings.py - has a lot of game settings which can be altered main.py -is the script to run to start the game

i am only using 1 module which needs to be imported in func_other_header.py - from termcolor import colored

One thing to note is at the end of every season a file saved_game.txt will be written to the current working directory by default (turn off this feature in func_other_game_settings.py) You can then load this game at any point. The file will get overwritten at the end of the season though so move backup the file. Also make sure the permissions of the file allow writing to.(running as root and then another user later could cause a permissions error)

Clone this wiki locally