项目作者: calvincramer

项目描述 :
Spice up you work-from-home zoom meetings with word bingo!
高级语言: Python
项目地址: git://github.com/calvincramer/covid-bingo.git
创建时间: 2020-12-05T18:11:28Z
项目社区:https://github.com/calvincramer/covid-bingo

开源协议:

下载


Covid Bingo

Spice up you work-from-home zoom meetings with word bingo!
Use this tool to generate any amount of bingo boards for any amount of people, with any words that you want!

The output is given as plain text files, and as an interactive html page.

Requirements

  • Python 3.9

Usage

  1. Clone this repo
  2. Add a new dictionary of words under the dictionaries folder. Each line in the file is interpreted as a separate word.
  3. Add a new ini file under the config folder. Follow the example of default-config.ini
    • This is where you choose all of your options
  4. Call the script with your config file
    ```shell
    ./generate-bingo-boards —config_file wr-core-eng-config.ini

Or you can edit already existing default.dict and default-config.ini and use:

./generate-bingo-boards

If you have multiple python installations, use 3.9 or above directly, such as:

python3.9 generate-bingo-boards

  1. * All files will be in the `output` directory, separated by person
  2. # Example plain-text output

Here are your bingo boards! Print this page out or open it in a text editor! Fill out the spaces as people say the words!

  1. ##### BOARD 1 #####
  2. +------------------+------------------+------------------+------------------+------------------+
  3. | | | | | |
  4. | | | | | |
  5. | Bus | Tradition | Squire | Cake | Salmon |
  6. | | | | | |
  7. | | | | | |
  8. +------------------+------------------+------------------+------------------+------------------+
  9. | | | | | |
  10. | | | | | |
  11. | Gregarious | Clique | Extraterrestrial | Madagascar | Speaker |
  12. | | | | | |
  13. | | | | | |
  14. +------------------+------------------+------------------+------------------+------------------+
  15. | | | | | |
  16. | | | | | |
  17. | Mushroom | Trains | FREE! | Cosmos | Pedestrian |
  18. | | | | | |
  19. | | | | | |
  20. +------------------+------------------+------------------+------------------+------------------+
  21. | | | | | |
  22. | | | | | |
  23. | Global Warming | Cacophony | Cabbage | Vegetarian | Prestige |
  24. | | | | | |
  25. | | | | | |
  26. +------------------+------------------+------------------+------------------+------------------+
  27. | | | | | |
  28. | | | | | |
  29. | Oven | Infinite | Miracle | Minister | Pony |
  30. | | | | | |
  31. | | | | | |
  32. +------------------+------------------+------------------+------------------+------------------+
  33. ##### BOARD 2 #####
  34. +------------------+------------------+------------------+------------------+------------------+
  35. | | | | | |
  36. | | | | | |
  37. | Cabbage | Commute | Gibberish | Miracle | Radiation |
  38. | | | | | |
  39. | | | | | |
  40. +------------------+------------------+------------------+------------------+------------------+
  41. | | | | | |
  42. | | | | | |
  43. | Desk | Mushroom | Gregarious | Squire | Charcuterie |
  44. | | | | | |
  45. | | | | | |
  46. +------------------+------------------+------------------+------------------+------------------+
  47. | | | | | |
  48. | | | | | |
  49. | Pedestrian | Extraterrestrial | FREE! | Bus | Acquit |
  50. | | | | | |
  51. | | | | | |
  52. +------------------+------------------+------------------+------------------+------------------+
  53. | | | | | |
  54. | | | | | |
  55. | Pie | Speaker | Nature | Zoo | Vegetarian |
  56. | | | | | |
  57. | | | | | |
  58. +------------------+------------------+------------------+------------------+------------------+
  59. | | | | | |
  60. | | | | | |
  61. | Pony | Canada | Trains | Lollygag | Communist |
  62. | | | | | |
  63. | | | | | |
  64. +------------------+------------------+------------------+------------------+------------------+
  65. ##### BOARD 3 #####
  66. +------------------+------------------+------------------+------------------+------------------+
  67. | | | | | |
  68. | | | | | |
  69. | Hypnotize | Poised | Mushroom | Extraterrestrial | Squire |
  70. | | | | | |
  71. | | | | | |
  72. +------------------+------------------+------------------+------------------+------------------+
  73. | | | | | |
  74. | | | | | |
  75. | Radiation | Global Warming | Vegetarian | Infinite | Gregarious |
  76. | | | | | |
  77. | | | | | |
  78. +------------------+------------------+------------------+------------------+------------------+
  79. | | | | | |
  80. | | | | | |
  81. | Gibberish | Pneumonia | FREE! | Salmon | Dentist |
  82. | | | | | |
  83. | | | | | |
  84. +------------------+------------------+------------------+------------------+------------------+
  85. | | | | | |
  86. | | | | | |
  87. | Dog | Flower | Madagascar | Bus | Desk |
  88. | | | | | |
  89. | | | | | |
  90. +------------------+------------------+------------------+------------------+------------------+
  91. | | | | | |
  92. | | | | | |
  93. | Speaker | Whiff | Operation | Minister | Charcuterie |
  94. | | | | | |
  95. | | | | | |
  96. +------------------+------------------+------------------+------------------+------------------+
  97. Generated with love using github.com/calvincramer/covid-bingo

```