empire-core 0.7.3__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.
- empire_core/__init__.py +36 -0
- empire_core/_archive/actions.py +511 -0
- empire_core/_archive/automation/__init__.py +24 -0
- empire_core/_archive/automation/alliance_tools.py +266 -0
- empire_core/_archive/automation/battle_reports.py +196 -0
- empire_core/_archive/automation/building_queue.py +242 -0
- empire_core/_archive/automation/defense_manager.py +124 -0
- empire_core/_archive/automation/map_scanner.py +370 -0
- empire_core/_archive/automation/multi_account.py +296 -0
- empire_core/_archive/automation/quest_automation.py +94 -0
- empire_core/_archive/automation/resource_manager.py +380 -0
- empire_core/_archive/automation/target_finder.py +153 -0
- empire_core/_archive/automation/tasks.py +224 -0
- empire_core/_archive/automation/unit_production.py +719 -0
- empire_core/_archive/cli.py +68 -0
- empire_core/_archive/client_async.py +469 -0
- empire_core/_archive/commands.py +201 -0
- empire_core/_archive/connection_async.py +228 -0
- empire_core/_archive/defense.py +156 -0
- empire_core/_archive/events/__init__.py +35 -0
- empire_core/_archive/events/base.py +153 -0
- empire_core/_archive/events/manager.py +85 -0
- empire_core/accounts.py +190 -0
- empire_core/client/__init__.py +0 -0
- empire_core/client/client.py +459 -0
- empire_core/config.py +87 -0
- empire_core/exceptions.py +42 -0
- empire_core/network/__init__.py +0 -0
- empire_core/network/connection.py +378 -0
- empire_core/protocol/__init__.py +0 -0
- empire_core/protocol/models/__init__.py +339 -0
- empire_core/protocol/models/alliance.py +186 -0
- empire_core/protocol/models/army.py +444 -0
- empire_core/protocol/models/attack.py +229 -0
- empire_core/protocol/models/auth.py +216 -0
- empire_core/protocol/models/base.py +403 -0
- empire_core/protocol/models/building.py +455 -0
- empire_core/protocol/models/castle.py +317 -0
- empire_core/protocol/models/chat.py +150 -0
- empire_core/protocol/models/defense.py +300 -0
- empire_core/protocol/models/map.py +269 -0
- empire_core/protocol/packet.py +104 -0
- empire_core/services/__init__.py +31 -0
- empire_core/services/alliance.py +222 -0
- empire_core/services/base.py +107 -0
- empire_core/services/castle.py +221 -0
- empire_core/state/__init__.py +0 -0
- empire_core/state/manager.py +398 -0
- empire_core/state/models.py +215 -0
- empire_core/state/quest_models.py +60 -0
- empire_core/state/report_models.py +115 -0
- empire_core/state/unit_models.py +75 -0
- empire_core/state/world_models.py +269 -0
- empire_core/storage/__init__.py +1 -0
- empire_core/storage/database.py +237 -0
- empire_core/utils/__init__.py +0 -0
- empire_core/utils/battle_sim.py +172 -0
- empire_core/utils/calculations.py +170 -0
- empire_core/utils/crypto.py +8 -0
- empire_core/utils/decorators.py +69 -0
- empire_core/utils/enums.py +111 -0
- empire_core/utils/helpers.py +252 -0
- empire_core/utils/response_awaiter.py +153 -0
- empire_core/utils/troops.py +93 -0
- empire_core-0.7.3.dist-info/METADATA +197 -0
- empire_core-0.7.3.dist-info/RECORD +67 -0
- empire_core-0.7.3.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
empire_core/__init__.py,sha256=zyO4lZ5uyBPzGskSAnh8csY2dX0EqyCN7TQ318Ax-wo,886
|
|
2
|
+
empire_core/accounts.py,sha256=Uw8md2-m3Bz2hlng4xJNEvAwBluabI2waUIcg-7JzSA,6314
|
|
3
|
+
empire_core/config.py,sha256=WuJiv63oyiAMJIh9GHsqTEPO2RoVIAVP0x3QebMZ0zg,1864
|
|
4
|
+
empire_core/exceptions.py,sha256=IZSdiOXBlObHSnvqJPengwD1Ox5wx6wfjyCllWu_MAg,826
|
|
5
|
+
empire_core/_archive/actions.py,sha256=47PAS14xv8eUqg45lfnHiQfptUrqjKqOiQ2vyYt1bNU,17151
|
|
6
|
+
empire_core/_archive/cli.py,sha256=m5uVogYscCWMzhEBeBClq9To00J6Qpffnxezn2BT2rQ,1742
|
|
7
|
+
empire_core/_archive/client_async.py,sha256=oppH_ofj0_A_UufxALvcnv690NZo_xIHGn8DmReZkJI,17725
|
|
8
|
+
empire_core/_archive/commands.py,sha256=wUbBcg3GjZpTCR-stVuuHUbp5fwe6d0nEcFeFUFilGk,7055
|
|
9
|
+
empire_core/_archive/connection_async.py,sha256=zX6kw4xPiZuV2FQx0eGqGeeL3PPP99ymgtZc4EWXZtM,8147
|
|
10
|
+
empire_core/_archive/defense.py,sha256=j15JY_hfgJoA9Jibei4XXM8YovoqcDZ_wJWnYWs3A1M,5672
|
|
11
|
+
empire_core/_archive/automation/__init__.py,sha256=GY1ReQJjuKn6hEDaalFGUnpKOMZqAkiOUsFmO6f3c34,643
|
|
12
|
+
empire_core/_archive/automation/alliance_tools.py,sha256=TvoxtxlYaLNMSA6DQbRX8sevr7gmD3d5DkYEn5OKDpg,9181
|
|
13
|
+
empire_core/_archive/automation/battle_reports.py,sha256=Bq1zhw6RoaVbJJKRa0Dz2nRP5Ym64T-Gzuckcm76hQ0,6752
|
|
14
|
+
empire_core/_archive/automation/building_queue.py,sha256=Nv_BIK2kuu4NaidG8TIn0rgSoFkQG_viaizW1EPPLaQ,7949
|
|
15
|
+
empire_core/_archive/automation/defense_manager.py,sha256=yg22aNtPPifWt2cCcHExev7O3wcWiQVWjrVRXateQVc,4522
|
|
16
|
+
empire_core/_archive/automation/map_scanner.py,sha256=HxkuXvz0-uT_LLWq1wnuZvhm8R5m34vZPLYbYGLSXXc,13888
|
|
17
|
+
empire_core/_archive/automation/multi_account.py,sha256=GQ4a3UWCycSkwscjXFIrlWnJblqYZ9P_YdN012Dp9Lw,10298
|
|
18
|
+
empire_core/_archive/automation/quest_automation.py,sha256=fVJUy3L7PiHRrk4raMYXC9pC_TrCsQAzBxFHhCRzYw8,3422
|
|
19
|
+
empire_core/_archive/automation/resource_manager.py,sha256=xPJyekQu6YCSc1FQ6U7Ro6bRAQcUpKw3fzFLgZIIKYE,13035
|
|
20
|
+
empire_core/_archive/automation/target_finder.py,sha256=k0MP4l6lM04Ea8hzLPTmLYrPZUxOPm8FpoBZBv4MoFQ,4914
|
|
21
|
+
empire_core/_archive/automation/tasks.py,sha256=dnJNA4TZWaTdKakdU2g7ooFHm53EgO4JVeZNFwjnC8I,7139
|
|
22
|
+
empire_core/_archive/automation/unit_production.py,sha256=3SMv9lDl9YRPk1BXtwkzbHrRsysIfuvm-w9bbiLC7FA,20684
|
|
23
|
+
empire_core/_archive/events/__init__.py,sha256=dQfglwTzrdEXuMk8WU-0GjYG5JnZZgUgTVswtlJkHXM,769
|
|
24
|
+
empire_core/_archive/events/base.py,sha256=ZjEcDNSPBL3VoaCqR5cYTKqJ_lPwnXE6osHufK2_Guw,3408
|
|
25
|
+
empire_core/_archive/events/manager.py,sha256=RJDvDzcEOq2DhAeHH2Wv4vdsx0s-i2_ckbK3k31H040,2689
|
|
26
|
+
empire_core/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
empire_core/client/client.py,sha256=-EuwI-ezrb05hyNcLht89nmk8fWo8-DmROidRgw5Jyw,16134
|
|
28
|
+
empire_core/network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
empire_core/network/connection.py,sha256=Uqa0974auCq0lH6VAK075axO8ARtkdeyBOPQ2i6brd4,11654
|
|
30
|
+
empire_core/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
empire_core/protocol/packet.py,sha256=gHmG78-NR4FteZmGJrqGHG901iL5NimGjLCxerNSrhU,3308
|
|
32
|
+
empire_core/protocol/models/__init__.py,sha256=EFlTk491yu_5OpOXZwIEZJNeJTmu4lk-SNQ2Q5eM9Zg,8618
|
|
33
|
+
empire_core/protocol/models/alliance.py,sha256=D42j1dt92SQjNt3da5zo88XGSxbDIV8lryNftcVVY38,4764
|
|
34
|
+
empire_core/protocol/models/army.py,sha256=0omhmycIS_oNjZaUV6DmRf6kZKO1lvsB8WTPtl60Ncw,10029
|
|
35
|
+
empire_core/protocol/models/attack.py,sha256=lvQCy1j5-xvYmEL54p-Y26NKNbcpqk2ORfH5ZZ2u1ts,5494
|
|
36
|
+
empire_core/protocol/models/auth.py,sha256=1AjnV644h7cP1ESSjSVtPUjR5fcowkAxsgEpALZYzUY,5192
|
|
37
|
+
empire_core/protocol/models/base.py,sha256=_XNfjRl7NdtiFzhYT_4TNabZiiUu8UKsvl--vBU38GU,11035
|
|
38
|
+
empire_core/protocol/models/building.py,sha256=SR7b6AFEfO80-4qNiv8CNNoXhWTQ1C4DI732lxvwXsk,10256
|
|
39
|
+
empire_core/protocol/models/castle.py,sha256=1AB22AfPZ-dVtboPwPCqcs75a1MJ6ml90AaIQdbY8fo,7549
|
|
40
|
+
empire_core/protocol/models/chat.py,sha256=urIQlsrKa8xa1eSGhUh74FAuQ1RxKCIwmXRGhPSj-cU,3960
|
|
41
|
+
empire_core/protocol/models/defense.py,sha256=hF6dzgttIQ_Z6jZy6W_Cj0gubaBZflXQpu9y5fOGk1Q,8420
|
|
42
|
+
empire_core/protocol/models/map.py,sha256=p9kjfkHGRKPNLQqX_y1f9CxnGS8kZOHH_Z22NJ0YMnw,6982
|
|
43
|
+
empire_core/services/__init__.py,sha256=J41x43v9fe4RSOdykC5hqrbcTblqWHWMuY0dBspRTO0,838
|
|
44
|
+
empire_core/services/alliance.py,sha256=EjYk7XUicgGrPSRf0uE8wTV37ne8CHEc--DhiJOUTqA,6722
|
|
45
|
+
empire_core/services/base.py,sha256=6RtzhinmXNZLnGBp1WMaRL803djH9QsFq9wU1DydBBc,2998
|
|
46
|
+
empire_core/services/castle.py,sha256=TWi6BCu913wtmYZ8cjS2jwR2NnbsrShCPfyIAMPV_C0,6570
|
|
47
|
+
empire_core/state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
empire_core/state/manager.py,sha256=Ybm7xF1DSemXR6G1lpCFNTnwx-A-fKdnf4cj3Lxhm2U,16210
|
|
49
|
+
empire_core/state/models.py,sha256=H5N8rig6WM43VfLjrSa4TCoEMT3kcDLySFEqBNXmaf0,5268
|
|
50
|
+
empire_core/state/quest_models.py,sha256=KwKocEHJ-g_clR60nP_9Kk1QdcVxKGhVfrawbLxvU7o,1427
|
|
51
|
+
empire_core/state/report_models.py,sha256=eXFg24KY5rbigU4l8iSq_DisrZZie-Vw9R0GyNaYCKI,3216
|
|
52
|
+
empire_core/state/unit_models.py,sha256=9mTSVLuREGIkjwIl8GN4K1BXuYDs8EtqsS0yVHO0RTY,1694
|
|
53
|
+
empire_core/state/world_models.py,sha256=HnVR89BaKxP_6wa1uvqEqCaoXohDoO3Sdr_xJO4Xy2o,8422
|
|
54
|
+
empire_core/storage/__init__.py,sha256=uoBUI604nk8Sv5_7C5t_EpE_R8cnZN_VdnYKn7gdekk,23
|
|
55
|
+
empire_core/storage/database.py,sha256=bSw_KscT-bLGNErB33ns4bLK4yvNHYO5jqKeTaszBOk,8476
|
|
56
|
+
empire_core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
+
empire_core/utils/battle_sim.py,sha256=r9tSIt9PB2C4Xgm_U1Z7aQuXpDjzmp08gIUO0PmWQkk,5382
|
|
58
|
+
empire_core/utils/calculations.py,sha256=iz-4TW1OOPBbFnFSTh6glO0RvQBylWeyAvih8LqmXu0,3988
|
|
59
|
+
empire_core/utils/crypto.py,sha256=od_ur4RN0GLIUd8k8JGomI-W01vF38u1t1CfYxHg6dw,221
|
|
60
|
+
empire_core/utils/decorators.py,sha256=HXNihSAiAD-h2Cg_fzT0BA385DieAgZomB3CmvQdxto,2530
|
|
61
|
+
empire_core/utils/enums.py,sha256=J7i-1myYEfvGhTXGhCioudYLFE7Nl2nJk2-lbgzRPzE,2543
|
|
62
|
+
empire_core/utils/helpers.py,sha256=ykWOV3VrRRDY7ZIkOI_6YAQqTsE86NgBxZrtfG_nySM,9596
|
|
63
|
+
empire_core/utils/response_awaiter.py,sha256=uRITpsNfgTxYue3UzRLF63GyzUFQrTjt_l62EQ6RWSI,4374
|
|
64
|
+
empire_core/utils/troops.py,sha256=PiEz6ejrrMhRuuxHNliBYrg5bUbzFA9SJ8xZy0uXyf0,2650
|
|
65
|
+
empire_core-0.7.3.dist-info/METADATA,sha256=v8EzZumIh-RM__qV1mdj76XexhwpcU_ZdVy5diYYA7I,5012
|
|
66
|
+
empire_core-0.7.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
67
|
+
empire_core-0.7.3.dist-info/RECORD,,
|