easterobot 1.0.0__py3-none-any.whl → 1.1.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. easterobot/alembic/env.py +91 -0
  2. easterobot/alembic/script.py.mako +28 -0
  3. easterobot/alembic/versions/2f0d4305e320_init_database.py +67 -0
  4. easterobot/alembic/versions/940c3b9c702d_add_lock_on_eggs.py +38 -0
  5. easterobot/bot.py +93 -462
  6. easterobot/cli.py +56 -17
  7. easterobot/commands/__init__.py +8 -0
  8. easterobot/commands/base.py +34 -13
  9. easterobot/commands/basket.py +10 -12
  10. easterobot/commands/edit.py +4 -4
  11. easterobot/commands/enable.py +5 -1
  12. easterobot/commands/game.py +187 -0
  13. easterobot/commands/help.py +1 -1
  14. easterobot/commands/reset.py +1 -1
  15. easterobot/commands/search.py +4 -4
  16. easterobot/commands/top.py +7 -18
  17. easterobot/config.py +67 -3
  18. easterobot/games/__init__.py +14 -0
  19. easterobot/games/connect.py +206 -0
  20. easterobot/games/game.py +262 -0
  21. easterobot/games/rock_paper_scissor.py +206 -0
  22. easterobot/games/tic_tac_toe.py +168 -0
  23. easterobot/hunts/__init__.py +14 -0
  24. easterobot/hunts/hunt.py +428 -0
  25. easterobot/hunts/rank.py +82 -0
  26. easterobot/models.py +2 -1
  27. easterobot/resources/alembic.ini +87 -0
  28. easterobot/resources/config.example.yml +10 -2
  29. easterobot/resources/credits.txt +5 -1
  30. easterobot/resources/emotes/icons/arrow.png +0 -0
  31. easterobot/resources/emotes/icons/end.png +0 -0
  32. easterobot/resources/emotes/icons/versus.png +0 -0
  33. easterobot/resources/emotes/icons/wait.png +0 -0
  34. {easterobot-1.0.0.dist-info → easterobot-1.1.1.dist-info}/METADATA +11 -5
  35. easterobot-1.1.1.dist-info/RECORD +66 -0
  36. easterobot-1.0.0.dist-info/RECORD +0 -48
  37. /easterobot/resources/{eggs → emotes/eggs}/egg_01.png +0 -0
  38. /easterobot/resources/{eggs → emotes/eggs}/egg_02.png +0 -0
  39. /easterobot/resources/{eggs → emotes/eggs}/egg_03.png +0 -0
  40. /easterobot/resources/{eggs → emotes/eggs}/egg_04.png +0 -0
  41. /easterobot/resources/{eggs → emotes/eggs}/egg_05.png +0 -0
  42. /easterobot/resources/{eggs → emotes/eggs}/egg_06.png +0 -0
  43. /easterobot/resources/{eggs → emotes/eggs}/egg_07.png +0 -0
  44. /easterobot/resources/{eggs → emotes/eggs}/egg_08.png +0 -0
  45. /easterobot/resources/{eggs → emotes/eggs}/egg_09.png +0 -0
  46. /easterobot/resources/{eggs → emotes/eggs}/egg_10.png +0 -0
  47. /easterobot/resources/{eggs → emotes/eggs}/egg_11.png +0 -0
  48. /easterobot/resources/{eggs → emotes/eggs}/egg_12.png +0 -0
  49. /easterobot/resources/{eggs → emotes/eggs}/egg_13.png +0 -0
  50. /easterobot/resources/{eggs → emotes/eggs}/egg_14.png +0 -0
  51. /easterobot/resources/{eggs → emotes/eggs}/egg_15.png +0 -0
  52. /easterobot/resources/{eggs → emotes/eggs}/egg_16.png +0 -0
  53. /easterobot/resources/{eggs → emotes/eggs}/egg_17.png +0 -0
  54. /easterobot/resources/{eggs → emotes/eggs}/egg_18.png +0 -0
  55. /easterobot/resources/{eggs → emotes/eggs}/egg_19.png +0 -0
  56. /easterobot/resources/{eggs → emotes/eggs}/egg_20.png +0 -0
  57. {easterobot-1.0.0.dist-info → easterobot-1.1.1.dist-info}/WHEEL +0 -0
  58. {easterobot-1.0.0.dist-info → easterobot-1.1.1.dist-info}/entry_points.txt +0 -0
  59. {easterobot-1.0.0.dist-info → easterobot-1.1.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: easterobot
3
- Version: 1.0.0
3
+ Version: 1.1.1
4
4
  Summary: Discord bot for Easter.
5
5
  Project-URL: Homepage, https://github.com/Dashstrom/easterobot
6
6
  Project-URL: Repository, https://github.com/Dashstrom/easterobot
@@ -8,7 +8,7 @@ Project-URL: Documentation, https://dashstrom.github.io/easterobot
8
8
  Author-email: Dashstrom <dashstrom.pro@gmail.com>
9
9
  License-File: LICENSE
10
10
  Keywords: bot,discord,easter,eggs,hunt
11
- Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Development Status :: 4 - Beta
12
12
  Classifier: Environment :: Console
13
13
  Classifier: Framework :: Pytest
14
14
  Classifier: Framework :: Sphinx
@@ -27,6 +27,7 @@ Classifier: Programming Language :: Python :: 3.13
27
27
  Classifier: Typing :: Typed
28
28
  Requires-Python: <4.0,>=3.9
29
29
  Requires-Dist: aiosqlite>=0.21.0
30
+ Requires-Dist: alembic>=1.15.2
30
31
  Requires-Dist: asyncpg>=0.30.0
31
32
  Requires-Dist: discord-py>=2.5.2
32
33
  Requires-Dist: msgspec>=0.19.0
@@ -135,6 +136,7 @@ Configuration directory
135
136
  .. code-block:: text
136
137
 
137
138
  data Root directory
139
+ ├── .gitignore Avoid pushing sensitive data
138
140
  ├── config.yml Configuration file
139
141
  ├── easterobot.db Database
140
142
  ├── logs Logging directory
@@ -142,10 +144,14 @@ Configuration directory
142
144
  │ └── easterobot.log.1 Rotating log file
143
145
  └── resources Resource directory
144
146
  ├── config.example.yml An example of config
145
- ├── credits.txt Credits of eggs emoji
146
- ├── eggs Directory for eggs
147
- └── egg_01.png Emoji to use
147
+ ├── credits.txt Credits of emotes
148
+ ├── emotes Directory loaded as application emotes
149
+ ├── eggs Directory for eggs
150
+ │ | └── egg_01.png Emoji to use for egg
151
+ │ └── icons Misc emotes to load
152
+ │ └── arrow.png Emoji used in messages
148
153
  ├── logging.conf Logging configuration
154
+ ├── alembic.ini Configure for alembic
149
155
  └── logo.png Logo used by the bot
150
156
 
151
157
  Development
@@ -0,0 +1,66 @@
1
+ easterobot/__init__.py,sha256=jicWnRlHiIKXyAoQhL0_ga8PwMpwr_S2s33olHYoHg0,287
2
+ easterobot/__main__.py,sha256=ix1OVjR-jxJIHzQiKyIswvn0oNphNNL9p7FtbZj9Stw,140
3
+ easterobot/bot.py,sha256=zDijoiO-PyrIHcpypuDDx9SXNQMvIq8N1y3VvJdDbnY,6594
4
+ easterobot/cli.py,sha256=G746r3abX-Vtcq9Ju-51FcZRj9y9PmGlIp9ADecajM4,5296
5
+ easterobot/config.py,sha256=jlV1oMRPVek4jJTiOYkrLUcR5FEESxDNUv-IVmsPSoo,13095
6
+ easterobot/info.py,sha256=q7feubgPyAaMb7D90jg9lLmGv78etpOKoumdMwEI2ek,546
7
+ easterobot/logger.py,sha256=eUUdMB0ebvb5h98WWZka2ntivBOmfHqhlvyr-82NKn4,482
8
+ easterobot/models.py,sha256=nFxz3S0YJAa0PuhRqoKt0ZToieFlXtHygIz3vrQ370c,1785
9
+ easterobot/py.typed,sha256=h_hqugBQEXpQj0jh7RpP9KzBF-otufUDlJ5mm8uZPHI,63
10
+ easterobot/alembic/env.py,sha256=xUZEwjSl6e5Xfg278ONxaSRzu713CH2GMFh5tmQe4mc,2523
11
+ easterobot/alembic/script.py.mako,sha256=3qBrHBf7F7ChKDUIdiNItiSXrDpgQdM7sR0YKzpaC50,689
12
+ easterobot/alembic/versions/2f0d4305e320_init_database.py,sha256=Y8pkYG_8i3jymbTxg5ANaaShpadPo5J2TUp2ZSKxffM,2245
13
+ easterobot/alembic/versions/940c3b9c702d_add_lock_on_eggs.py,sha256=lGGjeXzrHgRAP-i4kfMh6841EcOr3y8D1PRWaMV7ozA,943
14
+ easterobot/commands/__init__.py,sha256=vzVx4DrveAKl4c71VRMvQjzrWzuWmayAkd0f4k7JNt4,1026
15
+ easterobot/commands/base.py,sha256=_P6xsre6gDdS4h2-DXfhpLBgYW774eHOSc0p6iLv7iY,7054
16
+ easterobot/commands/basket.py,sha256=sV6JfPxg4U98dTTA5tr1wnMVM5DI9UXGL6FWL9OphTw,2924
17
+ easterobot/commands/disable.py,sha256=qjgLRQZUXK9toq-vJdE6qOYX5Pxb9wjIyvWrKJ22GAo,970
18
+ easterobot/commands/edit.py,sha256=QfQJoLKl3ox6evA4D_Bt8BMqT_M5w5b7z7-Rk9JXIK8,2134
19
+ easterobot/commands/enable.py,sha256=bgoXg7vVThmbJBt4Q2H9R-gWGBmyjWbu18xl_-gcTI8,1094
20
+ easterobot/commands/game.py,sha256=q1C34Grd_rNt6YfbTp-bU2HcdvQRX3mMiBRc2aytrTY,6041
21
+ easterobot/commands/help.py,sha256=KquNRRgUStMuu4w26icYgSF4K-HJNLl96ZNbEg3as3U,1082
22
+ easterobot/commands/reset.py,sha256=B_dTUawmXWBgbJkAyYYkyw_QjAvqvPoGTXLzUtLFPAc,3748
23
+ easterobot/commands/search.py,sha256=7rQGL7d7ftKqXvJdRPEpZeUcF72lf_b15vtXQkI3igM,4390
24
+ easterobot/commands/top.py,sha256=qjtRtvBKeKq228nRm_RYLY8HMrnz3n_fteBlr4WCpG0,3017
25
+ easterobot/games/__init__.py,sha256=WHqTEE4OW1kwOZlzQslkXYMf38nDX5gT01zsgDAr80g,259
26
+ easterobot/games/connect.py,sha256=tEwYv5nuSF_wbc4wqhizYnX5LcLwygylAskD7604kZo,6397
27
+ easterobot/games/game.py,sha256=M5OF4hvnblmlUM1z_VdehRENl9k08eJmM0WU-65zsjg,8942
28
+ easterobot/games/rock_paper_scissor.py,sha256=eDbdrVFuftDunvAQPU3Av41AGHmg6nwfltX8KANw1Hg,7091
29
+ easterobot/games/tic_tac_toe.py,sha256=ob1uaC4swpoB1gOAzweuALZNmhEfocprL9GQVVdpjKk,5115
30
+ easterobot/hunts/__init__.py,sha256=R0fO04m1F9kEmBy_5EzlYvWVjmY74q5adINEZGGnwCQ,258
31
+ easterobot/hunts/hunt.py,sha256=KS6wHOdMXirPJQUPwEt7NHyngWxJfAjf0tHVujtu0k0,14844
32
+ easterobot/hunts/rank.py,sha256=EYvyXfYqklvMflJJfcByYHhaU_NKq_D10aqOl7XuF8E,2274
33
+ easterobot/resources/alembic.ini,sha256=SmGkhRx5iZMpjEa5avCfz1lpF0_WZPEbGA_6MSI1GjU,3297
34
+ easterobot/resources/config.example.yml,sha256=6kUiraJZm7epWe_B2_M6Ppc08knIaPn1a-avcpOlG_4,15739
35
+ easterobot/resources/credits.txt,sha256=zJT_OmCi_PqBPQnWPvWWI9sJx6hPrXcDnNNpLRWDd20,378
36
+ easterobot/resources/logging.conf,sha256=RSL4k79N5oQb1hEtr5SiR_IAiKjkAHZaR4DR9lOxA-M,838
37
+ easterobot/resources/logo.png,sha256=DUFH6Tq8MjW0LGWVc4sox6RvBZCQWHZHTM2e5Ua4od4,82599
38
+ easterobot/resources/emotes/eggs/egg_01.png,sha256=XfEK4lofCA2Y6wfsD4Rs7iRpbMRptpVTJU3aweKo4gM,101250
39
+ easterobot/resources/emotes/eggs/egg_02.png,sha256=p7jUVfromhqIUi3Yi0jrJkGxsPzKaDGlKk4a1vzXjFI,69554
40
+ easterobot/resources/emotes/eggs/egg_03.png,sha256=RS8W-o9Rd3tTZ0uMSZPP4czZ8bwRl88W2WE3eF6RJVE,91331
41
+ easterobot/resources/emotes/eggs/egg_04.png,sha256=KiUrc5ZNHbsd0a0tmRWq9jMJOZZx-_NoCmeQ7-p6qeY,59060
42
+ easterobot/resources/emotes/eggs/egg_05.png,sha256=MSty6Xi1ewjk5gKxNs8NJQ0bsQJgqDPWTPMQHg4NSoY,97561
43
+ easterobot/resources/emotes/eggs/egg_06.png,sha256=HgmxrDjzGILWqQfzRpRKu77NiApBwZCpUI1sb6crzrg,73279
44
+ easterobot/resources/emotes/eggs/egg_07.png,sha256=DUFH6Tq8MjW0LGWVc4sox6RvBZCQWHZHTM2e5Ua4od4,82599
45
+ easterobot/resources/emotes/eggs/egg_08.png,sha256=GJbLBnO3OCBy-aUNi3lnQNG21Fr24X0ifLeyLNBN89E,89794
46
+ easterobot/resources/emotes/eggs/egg_09.png,sha256=xqXb-jMc1yl7WpFWWDwyzoGiiRrbFCrEAbhk886eTWo,120900
47
+ easterobot/resources/emotes/eggs/egg_10.png,sha256=cczey036iacCB_60A_U0ttbxE4LH57aD3w3dtiAUTE8,234791
48
+ easterobot/resources/emotes/eggs/egg_11.png,sha256=G6kBmhwnFJ-2kfhRZlI7SPCyUDQB87hKiemh6fE8MUw,132216
49
+ easterobot/resources/emotes/eggs/egg_12.png,sha256=A3AdGXi8N7ctjTn4ihc-CVxNfMacbyhKvIQHPP9WgQE,88566
50
+ easterobot/resources/emotes/eggs/egg_13.png,sha256=ZwWhTQ068JPWMchK751_uTeJv9_k3Lv67neB6Nb3aSE,102513
51
+ easterobot/resources/emotes/eggs/egg_14.png,sha256=bomeNUGe-oZQXiHbU08fLLcuchiA5U0JhNkf3_C_y08,93593
52
+ easterobot/resources/emotes/eggs/egg_15.png,sha256=qH_DqOzGNhkdLgU4K7j6yY53ztAxHZExlesxfyaOFhs,132482
53
+ easterobot/resources/emotes/eggs/egg_16.png,sha256=CyqXZxvg-3sYenx5ujOpT8k_tAGV-PX3dDwA4leCxDI,89692
54
+ easterobot/resources/emotes/eggs/egg_17.png,sha256=MpGVx3AbJe2b1caLkHmGFvr4ZBxNwxvmgrQlr9RdCP8,108363
55
+ easterobot/resources/emotes/eggs/egg_18.png,sha256=SzxW0vLJWuedrls9HtCCCuJCphxHMz8nNcyFUhNS1iA,113096
56
+ easterobot/resources/emotes/eggs/egg_19.png,sha256=rJ5hFNYmJWUzvpZIH1kLG2FPe0ZmMlKhXtiPXg8qZd0,86666
57
+ easterobot/resources/emotes/eggs/egg_20.png,sha256=gMIIi0A6Q79kVKu41SSwsEAPkoEz5sbHIaCLQdZAnSI,111573
58
+ easterobot/resources/emotes/icons/arrow.png,sha256=ZkAicY2AONJUQRTdvkG77wPO5EYE9FUOUBpkyDfHf9g,10800
59
+ easterobot/resources/emotes/icons/end.png,sha256=8jkufw0aS99tyZCb80PUzT2mkipQrYxwuFOFmOH6UNk,24526
60
+ easterobot/resources/emotes/icons/versus.png,sha256=Ss9PZu4nENB7xo8Kdunt0STvCSrMbo-bTaYz-NJ8tfI,29212
61
+ easterobot/resources/emotes/icons/wait.png,sha256=xXK6bKtPpD1f5wSjMGqzuPzVdV4gkOgMSJ_fVjuzJp4,20378
62
+ easterobot-1.1.1.dist-info/METADATA,sha256=wHgO2um5ocgHwFIOFA4lqQmZhu_JJpwrrm_P4BiAwx8,7467
63
+ easterobot-1.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
64
+ easterobot-1.1.1.dist-info/entry_points.txt,sha256=KaH17cNnu7qbWxFcMaj1wZ9GPTjWJ1OTqkBMhoLOmCQ,57
65
+ easterobot-1.1.1.dist-info/licenses/LICENSE,sha256=kYRz570GVPktzhJxWtaencsrsjdKSetpe5WISlDrvnY,1093
66
+ easterobot-1.1.1.dist-info/RECORD,,
@@ -1,48 +0,0 @@
1
- easterobot/__init__.py,sha256=jicWnRlHiIKXyAoQhL0_ga8PwMpwr_S2s33olHYoHg0,287
2
- easterobot/__main__.py,sha256=ix1OVjR-jxJIHzQiKyIswvn0oNphNNL9p7FtbZj9Stw,140
3
- easterobot/bot.py,sha256=T-CIozz-OmvpautWTf1UqYcq6vdGb2XxrXN9N7V-3Yc,20186
4
- easterobot/cli.py,sha256=rRK3W7eOrAAwH76TzUUUtIIdBNnYLNcvLlilHbqshkg,3739
5
- easterobot/config.py,sha256=55vGwqj-xLubXXjqQ3JUvifr5MPO32I70o3GEKR3JLc,10878
6
- easterobot/info.py,sha256=q7feubgPyAaMb7D90jg9lLmGv78etpOKoumdMwEI2ek,546
7
- easterobot/logger.py,sha256=eUUdMB0ebvb5h98WWZka2ntivBOmfHqhlvyr-82NKn4,482
8
- easterobot/models.py,sha256=Cfl9SN6zMQM89I9KmMPjc8t1TD4PTMdvd5ByhZl8opA,1713
9
- easterobot/py.typed,sha256=h_hqugBQEXpQj0jh7RpP9KzBF-otufUDlJ5mm8uZPHI,63
10
- easterobot/commands/__init__.py,sha256=TopCY-648LB4VPIJBrn1izuJBWHXq86FqsR8IGOkDzw,829
11
- easterobot/commands/base.py,sha256=fdt_a-LA-fRElu_-pyZSU1nqKvX_g76REuLIw3JZWlA,6048
12
- easterobot/commands/basket.py,sha256=c4b3kJxewa6GJs2n6QF4Ii309-NA3uVPYfk-MY2ISOw,2968
13
- easterobot/commands/disable.py,sha256=qjgLRQZUXK9toq-vJdE6qOYX5Pxb9wjIyvWrKJ22GAo,970
14
- easterobot/commands/edit.py,sha256=n69KynBt-kcnYrtdFgTUE2NSqU1REjIoHZraYIEGBqA,2103
15
- easterobot/commands/enable.py,sha256=IRIwIHgZS3kz60CCfQBR8sBRs25CEyvxYewsTW--TrI,1034
16
- easterobot/commands/help.py,sha256=g1qKVRxOrGdoIntiAZEgMemu38SLzxK4RiKl25ODrxs,1075
17
- easterobot/commands/reset.py,sha256=PetkKMkxL2tQWllC_XgN-_6raEzKRvlsTcuZuSlMpAE,3741
18
- easterobot/commands/search.py,sha256=BJlMZOX0rAoUFbTBaw5TapbQy7tpawvRX8hnGeqGu48,4333
19
- easterobot/commands/top.py,sha256=-daN2_QjNcbvlpiMgyDuhwqpVnJqF9Xghhd7lBzIoVo,3298
20
- easterobot/resources/config.example.yml,sha256=EGBPY75fLmYrL5GR5JJhX94T4V15WIVrvaZ6u99gNX0,15608
21
- easterobot/resources/credits.txt,sha256=hZejZyMCYGYx0GoU5hSyqs1twIERjkN74aqN_tvqr68,104
22
- easterobot/resources/logging.conf,sha256=RSL4k79N5oQb1hEtr5SiR_IAiKjkAHZaR4DR9lOxA-M,838
23
- easterobot/resources/logo.png,sha256=DUFH6Tq8MjW0LGWVc4sox6RvBZCQWHZHTM2e5Ua4od4,82599
24
- easterobot/resources/eggs/egg_01.png,sha256=XfEK4lofCA2Y6wfsD4Rs7iRpbMRptpVTJU3aweKo4gM,101250
25
- easterobot/resources/eggs/egg_02.png,sha256=p7jUVfromhqIUi3Yi0jrJkGxsPzKaDGlKk4a1vzXjFI,69554
26
- easterobot/resources/eggs/egg_03.png,sha256=RS8W-o9Rd3tTZ0uMSZPP4czZ8bwRl88W2WE3eF6RJVE,91331
27
- easterobot/resources/eggs/egg_04.png,sha256=KiUrc5ZNHbsd0a0tmRWq9jMJOZZx-_NoCmeQ7-p6qeY,59060
28
- easterobot/resources/eggs/egg_05.png,sha256=MSty6Xi1ewjk5gKxNs8NJQ0bsQJgqDPWTPMQHg4NSoY,97561
29
- easterobot/resources/eggs/egg_06.png,sha256=HgmxrDjzGILWqQfzRpRKu77NiApBwZCpUI1sb6crzrg,73279
30
- easterobot/resources/eggs/egg_07.png,sha256=DUFH6Tq8MjW0LGWVc4sox6RvBZCQWHZHTM2e5Ua4od4,82599
31
- easterobot/resources/eggs/egg_08.png,sha256=GJbLBnO3OCBy-aUNi3lnQNG21Fr24X0ifLeyLNBN89E,89794
32
- easterobot/resources/eggs/egg_09.png,sha256=xqXb-jMc1yl7WpFWWDwyzoGiiRrbFCrEAbhk886eTWo,120900
33
- easterobot/resources/eggs/egg_10.png,sha256=cczey036iacCB_60A_U0ttbxE4LH57aD3w3dtiAUTE8,234791
34
- easterobot/resources/eggs/egg_11.png,sha256=G6kBmhwnFJ-2kfhRZlI7SPCyUDQB87hKiemh6fE8MUw,132216
35
- easterobot/resources/eggs/egg_12.png,sha256=A3AdGXi8N7ctjTn4ihc-CVxNfMacbyhKvIQHPP9WgQE,88566
36
- easterobot/resources/eggs/egg_13.png,sha256=ZwWhTQ068JPWMchK751_uTeJv9_k3Lv67neB6Nb3aSE,102513
37
- easterobot/resources/eggs/egg_14.png,sha256=bomeNUGe-oZQXiHbU08fLLcuchiA5U0JhNkf3_C_y08,93593
38
- easterobot/resources/eggs/egg_15.png,sha256=qH_DqOzGNhkdLgU4K7j6yY53ztAxHZExlesxfyaOFhs,132482
39
- easterobot/resources/eggs/egg_16.png,sha256=CyqXZxvg-3sYenx5ujOpT8k_tAGV-PX3dDwA4leCxDI,89692
40
- easterobot/resources/eggs/egg_17.png,sha256=MpGVx3AbJe2b1caLkHmGFvr4ZBxNwxvmgrQlr9RdCP8,108363
41
- easterobot/resources/eggs/egg_18.png,sha256=SzxW0vLJWuedrls9HtCCCuJCphxHMz8nNcyFUhNS1iA,113096
42
- easterobot/resources/eggs/egg_19.png,sha256=rJ5hFNYmJWUzvpZIH1kLG2FPe0ZmMlKhXtiPXg8qZd0,86666
43
- easterobot/resources/eggs/egg_20.png,sha256=gMIIi0A6Q79kVKu41SSwsEAPkoEz5sbHIaCLQdZAnSI,111573
44
- easterobot-1.0.0.dist-info/METADATA,sha256=Kybs4OdTxRmxXEAmaREWsK-KE8ZktmPw_ylbbJYzWx4,7114
45
- easterobot-1.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
46
- easterobot-1.0.0.dist-info/entry_points.txt,sha256=KaH17cNnu7qbWxFcMaj1wZ9GPTjWJ1OTqkBMhoLOmCQ,57
47
- easterobot-1.0.0.dist-info/licenses/LICENSE,sha256=kYRz570GVPktzhJxWtaencsrsjdKSetpe5WISlDrvnY,1093
48
- easterobot-1.0.0.dist-info/RECORD,,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes