├── .gitattributes ├── README.md ├── create_graph.py ├── gui.py ├── img ├── code.png ├── finalgraph.png ├── flag.png └── mediacands.png └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicpb/PresidentGraph/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicpb/PresidentGraph/HEAD/README.md -------------------------------------------------------------------------------- /create_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicpb/PresidentGraph/HEAD/create_graph.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicpb/PresidentGraph/HEAD/gui.py -------------------------------------------------------------------------------- /img/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicpb/PresidentGraph/HEAD/img/code.png -------------------------------------------------------------------------------- /img/finalgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicpb/PresidentGraph/HEAD/img/finalgraph.png -------------------------------------------------------------------------------- /img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicpb/PresidentGraph/HEAD/img/flag.png -------------------------------------------------------------------------------- /img/mediacands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicpb/PresidentGraph/HEAD/img/mediacands.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | grapheme==0.6.0 2 | matplotlib==3.5.3 3 | numpy==1.23.2 4 | --------------------------------------------------------------------------------