hh-applicant-tool 1.4.7__py3-none-any.whl → 1.4.12__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.
- hh_applicant_tool/__main__.py +1 -1
- hh_applicant_tool/ai/openai.py +2 -2
- hh_applicant_tool/api/__init__.py +4 -2
- hh_applicant_tool/api/client.py +23 -12
- hh_applicant_tool/{constants.py → api/client_keys.py} +3 -3
- hh_applicant_tool/{datatypes.py → api/datatypes.py} +2 -0
- hh_applicant_tool/api/errors.py +8 -2
- hh_applicant_tool/{utils → api}/user_agent.py +1 -1
- hh_applicant_tool/main.py +12 -13
- hh_applicant_tool/operations/apply_similar.py +125 -47
- hh_applicant_tool/operations/authorize.py +82 -25
- hh_applicant_tool/operations/call_api.py +3 -3
- hh_applicant_tool/operations/{check_negotiations.py → clear_negotiations.py} +40 -25
- hh_applicant_tool/operations/list_resumes.py +5 -7
- hh_applicant_tool/operations/query.py +3 -1
- hh_applicant_tool/operations/reply_employers.py +80 -40
- hh_applicant_tool/operations/settings.py +2 -2
- hh_applicant_tool/operations/update_resumes.py +5 -4
- hh_applicant_tool/operations/whoami.py +1 -1
- hh_applicant_tool/storage/__init__.py +5 -1
- hh_applicant_tool/storage/facade.py +2 -2
- hh_applicant_tool/storage/models/base.py +4 -4
- hh_applicant_tool/storage/models/contacts.py +28 -0
- hh_applicant_tool/storage/queries/schema.sql +22 -9
- hh_applicant_tool/storage/repositories/base.py +69 -15
- hh_applicant_tool/storage/repositories/contacts.py +5 -10
- hh_applicant_tool/storage/repositories/employers.py +1 -0
- hh_applicant_tool/storage/repositories/errors.py +19 -0
- hh_applicant_tool/storage/repositories/negotiations.py +1 -0
- hh_applicant_tool/storage/repositories/resumes.py +2 -7
- hh_applicant_tool/storage/repositories/settings.py +1 -0
- hh_applicant_tool/storage/repositories/vacancies.py +1 -0
- hh_applicant_tool/storage/utils.py +6 -15
- hh_applicant_tool/utils/__init__.py +3 -3
- hh_applicant_tool/utils/config.py +1 -1
- hh_applicant_tool/utils/log.py +4 -1
- hh_applicant_tool/utils/mixins.py +20 -19
- hh_applicant_tool/utils/terminal.py +13 -0
- {hh_applicant_tool-1.4.7.dist-info → hh_applicant_tool-1.4.12.dist-info}/METADATA +197 -140
- hh_applicant_tool-1.4.12.dist-info/RECORD +68 -0
- hh_applicant_tool/storage/models/contact.py +0 -16
- hh_applicant_tool-1.4.7.dist-info/RECORD +0 -67
- /hh_applicant_tool/utils/{dateutil.py → date.py} +0 -0
- /hh_applicant_tool/utils/{jsonutil.py → json.py} +0 -0
- {hh_applicant_tool-1.4.7.dist-info → hh_applicant_tool-1.4.12.dist-info}/WHEEL +0 -0
- {hh_applicant_tool-1.4.7.dist-info → hh_applicant_tool-1.4.12.dist-info}/entry_points.txt +0 -0
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
hh_applicant_tool/__init__.py,sha256=ic_GIg9QtlrtgbXEDdhFg3J52VJRRu_OoEsFoRmZ_wk,34
|
|
2
|
-
hh_applicant_tool/__main__.py,sha256=o6kDuEJML3MnZW3HUKRBjaMeTjYjBQAwqRkavfwQSQ8,92
|
|
3
|
-
hh_applicant_tool/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
hh_applicant_tool/ai/base.py,sha256=wrccJEO5FNfW6LQTj-pLZAu0VCcs8QXdzf74erBuTew,35
|
|
5
|
-
hh_applicant_tool/ai/openai.py,sha256=R82CiGxklm5WxLVUNpXzdOVrKVRI5uT7Lzd9puT-FqY,1655
|
|
6
|
-
hh_applicant_tool/api/__init__.py,sha256=kgFSHibRaAugN2BA3U1djEa20qgKJUUVouwJzjEB0DU,84
|
|
7
|
-
hh_applicant_tool/api/client.py,sha256=iy4W2ubaDMxkcWqjRU6cH7V2PcSxAy5IYKU-dStEra0,9392
|
|
8
|
-
hh_applicant_tool/api/errors.py,sha256=u6ogOo0QijQ-UCi6aApeR2v4bqh1neSQ-184owiPWiI,3399
|
|
9
|
-
hh_applicant_tool/constants.py,sha256=OkVtQXRIyrZvgJ0N7Oxe-L5BSPyJL5DhyUU7exAHIuI,622
|
|
10
|
-
hh_applicant_tool/datatypes.py,sha256=YAeqY8khKolBFUt-bNuUXQlmpxkkEGLef5f07QtTSuM,5939
|
|
11
|
-
hh_applicant_tool/main.py,sha256=b3CKwewS5RduUGf7PLG2sJDXjTzVUIoj0x52Gm78Mac,9999
|
|
12
|
-
hh_applicant_tool/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
hh_applicant_tool/operations/apply_similar.py,sha256=nE5GKg4g5uOoV8FE7KT9ctGf_MUTg5yr1M_pBvmPxgM,20030
|
|
14
|
-
hh_applicant_tool/operations/authorize.py,sha256=rg3ks71_LuQrfFoIFEb03bHAp29q00sT5NcGwzuuAYs,10728
|
|
15
|
-
hh_applicant_tool/operations/call_api.py,sha256=9bnyakrQ3f5DiAL7Qr6bhkVqQeFFSloslSFNPkj0CGU,1519
|
|
16
|
-
hh_applicant_tool/operations/check_negotiations.py,sha256=LHrgVCfJF4My-l1YUBDTV_c-0kDEem5HylvkZBq-41c,3629
|
|
17
|
-
hh_applicant_tool/operations/check_proxy.py,sha256=HUbDN_CacFEQLGq8B2SBZ_F7-appdMeIrblFrxvt5MI,777
|
|
18
|
-
hh_applicant_tool/operations/config.py,sha256=eNQik_sBobrNMBB3tZ2tuCveCqH-XCub26WInd6GYT0,4725
|
|
19
|
-
hh_applicant_tool/operations/install.py,sha256=e626LnUB5OVsZ1M6cMXfW94hSlN9BDwPfKYcXMtPEgc,794
|
|
20
|
-
hh_applicant_tool/operations/list_resumes.py,sha256=OU5s197LGAGvcvNTaVGxU-TAhiu0hkC3RCGoN5sdJ5Y,1330
|
|
21
|
-
hh_applicant_tool/operations/log.py,sha256=VwnKYDYOOMJKZPGe3X2auo89rAIdbR_7KzXzbt4ve7Y,2542
|
|
22
|
-
hh_applicant_tool/operations/migrate_db.py,sha256=CMWpkhnvJvyGb4QSrtfxrWfEehmHyZ_flevMMgobkfI,2073
|
|
23
|
-
hh_applicant_tool/operations/query.py,sha256=sJz6yenn3eCs2U3clhe9ipC03SniGeer_lIf5ZN8qZg,3660
|
|
24
|
-
hh_applicant_tool/operations/refresh_token.py,sha256=K-L8GMC9azu3tngdVsb8zub9SmzKpuCjbCYAwNgp6Uo,640
|
|
25
|
-
hh_applicant_tool/operations/reply_employers.py,sha256=h0-8d62fRG71DiDkpNDFAiBfTeU4t39B7Zwq4zxl3SE,11979
|
|
26
|
-
hh_applicant_tool/operations/settings.py,sha256=HYxx81vIVbyXOf--tMpA3BrrHjqWNx8F8YDByaWTnwc,2924
|
|
27
|
-
hh_applicant_tool/operations/uninstall.py,sha256=IfFTCzvMT1FfoVj-yvIXwa-UaxV5ai8mmRs9hVDiWa4,626
|
|
28
|
-
hh_applicant_tool/operations/update_resumes.py,sha256=GqNZ5yDIAVW4C8QfzxTliF9CIY-PPDccMcZ2pajDCag,1177
|
|
29
|
-
hh_applicant_tool/operations/whoami.py,sha256=_kkz8pFRF9ChsoxqVyJ4dokABu-ELeld9RSLwoxPdlA,1687
|
|
30
|
-
hh_applicant_tool/storage/__init__.py,sha256=ggelL-_xA2foBurkYP6OfgXBl-9uhfGX1PXPnZxlPSc,153
|
|
31
|
-
hh_applicant_tool/storage/facade.py,sha256=j-GurkPFA5megmGXosWShR6GwmQsiyo5QQdEu1_VRKs,910
|
|
32
|
-
hh_applicant_tool/storage/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
hh_applicant_tool/storage/models/base.py,sha256=iO9ZpMYpRHNOFsDtsgqDPJFZ56wt7WXVMlQ_Qr4iBOA,5511
|
|
34
|
-
hh_applicant_tool/storage/models/contact.py,sha256=4zfriRYyWLBL0Suiams7Qn5RxuJPPjywEc6ICFdTrIQ,502
|
|
35
|
-
hh_applicant_tool/storage/models/employer.py,sha256=QH9F-SIUWweeHZzWoptgIdlFQy4wxqakLmpVs7Fg9nI,344
|
|
36
|
-
hh_applicant_tool/storage/models/negotiation.py,sha256=HSSXD2YMvaVkNqHBLmFxVcpbpOpQzaCPraL-7j7m7Fk,454
|
|
37
|
-
hh_applicant_tool/storage/models/resume.py,sha256=R3FcVhlUvG-5K23OvLtOWbf0zGQLx7Nods25L6xq-1c,548
|
|
38
|
-
hh_applicant_tool/storage/models/setting.py,sha256=DIRvW1IX-1E3Af-JJY8RZwxn-E39OSHHwNDk-N4Yh-4,123
|
|
39
|
-
hh_applicant_tool/storage/models/vacancy.py,sha256=97OkoCh6kvjRuQoKYRGAHJE9L1ncELL427L-TXcnqbA,1097
|
|
40
|
-
hh_applicant_tool/storage/queries/migrations/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
hh_applicant_tool/storage/queries/schema.sql,sha256=zOikp5dpqUk8QGqcNolA51yPhaL-3uRUM3pmy6SfrSs,3893
|
|
42
|
-
hh_applicant_tool/storage/repositories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
hh_applicant_tool/storage/repositories/base.py,sha256=aSHJZKCi-MB1LZKZKZXmPvikPi31z5FTBoSozFPEkfk,5734
|
|
44
|
-
hh_applicant_tool/storage/repositories/contacts.py,sha256=0ijj_wpyaHUQtJTlts5ar8SX-fe7ZGywa0y788zYZgs,461
|
|
45
|
-
hh_applicant_tool/storage/repositories/employers.py,sha256=WWN6K-Qk7_PJfSUl8BOvNmbyO4Xjy2jaagCmvdnbAzY,309
|
|
46
|
-
hh_applicant_tool/storage/repositories/negotiations.py,sha256=IcTGXx0FK1FeGC49WBfvKOFwARSD6OpBTn_l0iZTKU4,259
|
|
47
|
-
hh_applicant_tool/storage/repositories/resumes.py,sha256=jYJ5O5FVyR8F-T6SXvgmfFEw5k0d9K-UjaPSHCRChHc,354
|
|
48
|
-
hh_applicant_tool/storage/repositories/settings.py,sha256=-amBuLNVQDjdqcCGbyWrbQmON_XdettkEDKJW0OwQYk,808
|
|
49
|
-
hh_applicant_tool/storage/repositories/vacancies.py,sha256=ykrn204H5hkbXVo_Ga-9Ry9BJ-b6EKHm-nht713B3p0,181
|
|
50
|
-
hh_applicant_tool/storage/utils.py,sha256=tjQDlsB1p7_mvXAipuxddWKpjV-V5G1YGCTu-52OXB4,1610
|
|
51
|
-
hh_applicant_tool/utils/__init__.py,sha256=OD_dtkJUt81bGKobilsxs1BBwxqfmAu-Ga3PNjaWWRQ,744
|
|
52
|
-
hh_applicant_tool/utils/attrdict.py,sha256=wlbow24rovk9kZ0lc0xA4ULlgZ-UWj4GUAmZhAbW9Wg,155
|
|
53
|
-
hh_applicant_tool/utils/binpack.py,sha256=qW55IPleip_wi1GyNBhPwCYP3GGQzi8BASGKD3sOIw8,4658
|
|
54
|
-
hh_applicant_tool/utils/config.py,sha256=cZUVt5F15BbY47X4fAvOLtpBUp9hxwzEMOG30jS30Ro,1600
|
|
55
|
-
hh_applicant_tool/utils/dateutil.py,sha256=foPghTLlgThL-oiMu_LedaG8KS5IMfjGo1wsrAanhPM,456
|
|
56
|
-
hh_applicant_tool/utils/jsonc.py,sha256=WATp8MeKglEI6MRdXWBmqvW3q8IRNpt7UPjAKIf5VBs,4072
|
|
57
|
-
hh_applicant_tool/utils/jsonutil.py,sha256=uW5Ajdv_IYCfVRHJiUVjQnb5nI7XRMva-s3QcVWruvY,1701
|
|
58
|
-
hh_applicant_tool/utils/log.py,sha256=-RtmzoSY9TD4JC2tG2k01x-nJRuYg2eYFXSIH5GGGCA,4084
|
|
59
|
-
hh_applicant_tool/utils/misc.py,sha256=BW0oUEozsMS8WBBIH6y-lUC_MBkuwhO2zbL0nM_Fi50,238
|
|
60
|
-
hh_applicant_tool/utils/mixins.py,sha256=kCMO4oehmWXkrmz8ogJUpUQ1Mk5W-eBNz75pmWoZaas,7282
|
|
61
|
-
hh_applicant_tool/utils/string.py,sha256=dQn1uhwYXesjRmqkDn5HAHOdeaGF2v1HXpT1Quff6Eg,618
|
|
62
|
-
hh_applicant_tool/utils/terminal.py,sha256=pn5aKU3H5t4RXepdNynM-QX8imgxKsriM0EL7AnZ7oM,676
|
|
63
|
-
hh_applicant_tool/utils/user_agent.py,sha256=4Qmql_E9wxhWfZ_ohmr1cqi2bzgYvbKvcsOXrB1KBL8,498
|
|
64
|
-
hh_applicant_tool-1.4.7.dist-info/METADATA,sha256=5ARmoKG8tGX_YpfJiZjTCsIjnVWFbq0MMr9r7JV3Vdk,43268
|
|
65
|
-
hh_applicant_tool-1.4.7.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
66
|
-
hh_applicant_tool-1.4.7.dist-info/entry_points.txt,sha256=Vb7M2YaYLMtKYJZh8chIrXZApMzSRFT1-rQw-U9r10g,65
|
|
67
|
-
hh_applicant_tool-1.4.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|