django-esi 8.1.0__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 (100) hide show
  1. django_esi-8.1.0.dist-info/METADATA +93 -0
  2. django_esi-8.1.0.dist-info/RECORD +100 -0
  3. django_esi-8.1.0.dist-info/WHEEL +4 -0
  4. django_esi-8.1.0.dist-info/licenses/LICENSE +674 -0
  5. esi/__init__.py +7 -0
  6. esi/admin.py +42 -0
  7. esi/aiopenapi3/client.py +79 -0
  8. esi/aiopenapi3/plugins.py +224 -0
  9. esi/app_settings.py +112 -0
  10. esi/apps.py +11 -0
  11. esi/checks.py +56 -0
  12. esi/clients.py +657 -0
  13. esi/decorators.py +271 -0
  14. esi/errors.py +22 -0
  15. esi/exceptions.py +51 -0
  16. esi/helpers.py +63 -0
  17. esi/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  18. esi/locale/cs_CZ/LC_MESSAGES/django.po +53 -0
  19. esi/locale/de/LC_MESSAGES/django.mo +0 -0
  20. esi/locale/de/LC_MESSAGES/django.po +58 -0
  21. esi/locale/en/LC_MESSAGES/django.mo +0 -0
  22. esi/locale/en/LC_MESSAGES/django.po +54 -0
  23. esi/locale/es/LC_MESSAGES/django.mo +0 -0
  24. esi/locale/es/LC_MESSAGES/django.po +59 -0
  25. esi/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  26. esi/locale/fr_FR/LC_MESSAGES/django.po +59 -0
  27. esi/locale/it_IT/LC_MESSAGES/django.mo +0 -0
  28. esi/locale/it_IT/LC_MESSAGES/django.po +59 -0
  29. esi/locale/ja/LC_MESSAGES/django.mo +0 -0
  30. esi/locale/ja/LC_MESSAGES/django.po +58 -0
  31. esi/locale/ko_KR/LC_MESSAGES/django.mo +0 -0
  32. esi/locale/ko_KR/LC_MESSAGES/django.po +58 -0
  33. esi/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
  34. esi/locale/nl_NL/LC_MESSAGES/django.po +53 -0
  35. esi/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
  36. esi/locale/pl_PL/LC_MESSAGES/django.po +53 -0
  37. esi/locale/ru/LC_MESSAGES/django.mo +0 -0
  38. esi/locale/ru/LC_MESSAGES/django.po +61 -0
  39. esi/locale/sk/LC_MESSAGES/django.mo +0 -0
  40. esi/locale/sk/LC_MESSAGES/django.po +55 -0
  41. esi/locale/uk/LC_MESSAGES/django.mo +0 -0
  42. esi/locale/uk/LC_MESSAGES/django.po +57 -0
  43. esi/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
  44. esi/locale/zh_Hans/LC_MESSAGES/django.po +58 -0
  45. esi/management/commands/__init__.py +0 -0
  46. esi/management/commands/esi_clear_spec_cache.py +21 -0
  47. esi/management/commands/generate_esi_stubs.py +661 -0
  48. esi/management/commands/migrate_to_ssov2.py +188 -0
  49. esi/managers.py +303 -0
  50. esi/managers.pyi +85 -0
  51. esi/migrations/0001_initial.py +55 -0
  52. esi/migrations/0002_scopes_20161208.py +56 -0
  53. esi/migrations/0003_hide_tokens_from_admin_site.py +23 -0
  54. esi/migrations/0004_remove_unique_access_token.py +18 -0
  55. esi/migrations/0005_remove_token_length_limit.py +23 -0
  56. esi/migrations/0006_remove_url_length_limit.py +18 -0
  57. esi/migrations/0007_fix_mysql_8_migration.py +18 -0
  58. esi/migrations/0008_nullable_refresh_token.py +18 -0
  59. esi/migrations/0009_set_old_tokens_to_sso_v1.py +18 -0
  60. esi/migrations/0010_set_new_tokens_to_sso_v2.py +18 -0
  61. esi/migrations/0011_add_token_indices.py +28 -0
  62. esi/migrations/0012_fix_token_type_choices.py +18 -0
  63. esi/migrations/0013_squashed_0012_fix_token_type_choices.py +57 -0
  64. esi/migrations/__init__.py +0 -0
  65. esi/models.py +349 -0
  66. esi/openapi_clients.py +1225 -0
  67. esi/rate_limiting.py +107 -0
  68. esi/signals.py +21 -0
  69. esi/static/esi/img/EVE_SSO_Login_Buttons_Large_Black.png +0 -0
  70. esi/static/esi/img/EVE_SSO_Login_Buttons_Large_White.png +0 -0
  71. esi/static/esi/img/EVE_SSO_Login_Buttons_Small_Black.png +0 -0
  72. esi/static/esi/img/EVE_SSO_Login_Buttons_Small_White.png +0 -0
  73. esi/stubs.py +2 -0
  74. esi/stubs.pyi +6807 -0
  75. esi/tasks.py +78 -0
  76. esi/templates/esi/select_token.html +116 -0
  77. esi/templatetags/__init__.py +0 -0
  78. esi/templatetags/scope_tags.py +8 -0
  79. esi/tests/__init__.py +134 -0
  80. esi/tests/client_authed_pilot.py +63 -0
  81. esi/tests/client_public_pilot.py +53 -0
  82. esi/tests/factories.py +47 -0
  83. esi/tests/factories_2.py +60 -0
  84. esi/tests/jwt_factory.py +135 -0
  85. esi/tests/test_checks.py +48 -0
  86. esi/tests/test_clients.py +1019 -0
  87. esi/tests/test_decorators.py +578 -0
  88. esi/tests/test_management_command.py +307 -0
  89. esi/tests/test_managers.py +673 -0
  90. esi/tests/test_models.py +403 -0
  91. esi/tests/test_openapi.json +854 -0
  92. esi/tests/test_openapi.py +1017 -0
  93. esi/tests/test_swagger.json +489 -0
  94. esi/tests/test_swagger_full.json +51112 -0
  95. esi/tests/test_tasks.py +116 -0
  96. esi/tests/test_templatetags.py +22 -0
  97. esi/tests/test_views.py +331 -0
  98. esi/tests/threading_pilot.py +69 -0
  99. esi/urls.py +9 -0
  100. esi/views.py +129 -0
@@ -0,0 +1,93 @@
1
+ Metadata-Version: 2.4
2
+ Name: django-esi
3
+ Version: 8.1.0
4
+ Summary: Django app for accessing the EVE Swagger Interface (ESI).
5
+ Keywords: eveonline
6
+ Author-email: Alliance Auth <adarnof@gmail.com>
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ Classifier: Environment :: Web Environment
10
+ Classifier: Framework :: Django
11
+ Classifier: Framework :: Django :: 4.2
12
+ Classifier: Framework :: Django :: 5.2
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python
17
+ Classifier: Programming Language :: Python :: 3 :: Only
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
23
+ Classifier: Topic :: Internet :: WWW/HTTP
24
+ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
25
+ License-File: LICENSE
26
+ Requires-Dist: aiopenapi3
27
+ Requires-Dist: bravado>=10.6,<12
28
+ Requires-Dist: celery>=4.0.2
29
+ Requires-Dist: django>=4.2,<6
30
+ Requires-Dist: django-redis>=5.2
31
+ Requires-Dist: httpx[brotli, http2, zstd]
32
+ Requires-Dist: jsonschema<4
33
+ Requires-Dist: pydantic>=2.12.3
34
+ Requires-Dist: python-jose>=3.3
35
+ Requires-Dist: requests>=2.26
36
+ Requires-Dist: requests-oauthlib>=0.8
37
+ Requires-Dist: tenacity
38
+ Requires-Dist: tqdm>=4.62.3
39
+ Requires-Dist: myst-parser ; extra == "docs"
40
+ Requires-Dist: sphinx ; extra == "docs"
41
+ Requires-Dist: sphinx-copybutton ; extra == "docs"
42
+ Requires-Dist: sphinx-rtd-theme>=3,<4 ; extra == "docs"
43
+ Requires-Dist: sphinx-tabs ; extra == "docs"
44
+ Requires-Dist: sphinxcontrib-django ; extra == "docs"
45
+ Requires-Dist: coverage ; extra == "test"
46
+ Requires-Dist: factory-boy ; extra == "test"
47
+ Requires-Dist: requests-mock ; extra == "test"
48
+ Project-URL: Documentation, https://django-esi.readthedocs.io/en/latest/
49
+ Project-URL: Homepage, https://gitlab.com/allianceauth/django-esi
50
+ Project-URL: Source, https://gitlab.com/allianceauth/django-esi
51
+ Project-URL: Tracker, https://gitlab.com/allianceauth/django-esi/-/issues
52
+ Provides-Extra: docs
53
+ Provides-Extra: test
54
+
55
+ # Django-ESI
56
+
57
+ Django app for easy access to the EVE Swagger Interface (ESI)
58
+
59
+ [![Version](https://img.shields.io/pypi/v/django-esi)](https://pypi.org/project/django-esi/)
60
+ [![Python Versions](https://img.shields.io/pypi/pyversions/django-esi)](https://pypi.org/project/django-esi/)
61
+ [![Django Versions](https://img.shields.io/pypi/djversions/django-esi)](https://pypi.org/project/django-esi/)
62
+ [![License](https://img.shields.io/badge/license-GPLv3-green)](https://pypi.org/project/django-esi/)
63
+ [![Pipeline Status](https://gitlab.com/allianceauth/django-esi/badges/master/pipeline.svg)](https://gitlab.com/allianceauth/django-esi/pipelines)
64
+ [![Coverage](https://gitlab.com/allianceauth/django-esi/badges/master/coverage.svg)](https://gitlab.com/allianceauth/django-esi/pipelines)
65
+ [![Documentation Status](https://readthedocs.org/projects/django-esi/badge/?version=latest)](https://django-esi.readthedocs.io/en/latest/?badge=latest)
66
+ [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
67
+ [![Chat on Discord](https://img.shields.io/discord/399006117012832262.svg)](https://discord.gg/fjnHAmk)
68
+
69
+ ## Overview
70
+
71
+ Django-ESI is a Django app that provides an interface for easy access to the EVE Swagger Interface (ESI), the official API for the game [EVE Online](https://www.eveonline.com/).
72
+
73
+ It is built upon [Bravado](https://github.com/Yelp/bravado) - a python client library for Swagger 2.0 services.
74
+
75
+ Django-ESI adds the following main functionalities to a Django site:
76
+
77
+ - Dynamically generated client for interacting with public and private ESI endpoints
78
+ - Support for adding EVE SSO to authenticate characters and retrieve tokens
79
+ - Control over which ESI endpoint versions are used
80
+
81
+ ## Python Support
82
+
83
+ Django-ESI follows the Django Python support schedule, The supported version of Python will differ based on the version of Django used.
84
+ <https://docs.djangoproject.com/en/5.2/faq/install/#what-python-version-can-i-use-with-django>
85
+
86
+ ## History of this app
87
+
88
+ This app is a fork from [adarnauth-esi](https://gitlab.com/Adarnof/adarnauth-esi). Since this app is an important component of the [Alliance Auth](https://gitlab.com/allianceauth/allianceauth) system and Adarnof - the original author - was no longer able to maintain it the AA dev team has decided in December 2019 to take over maintenance and further developing for this app within the Alliance Auth project.
89
+
90
+ ## Documentation
91
+
92
+ For all details on how to install and use Django-ESI please see the [Documentation](https://django-esi.readthedocs.io/en/latest/).
93
+
@@ -0,0 +1,100 @@
1
+ esi/__init__.py,sha256=qIrybf6AAE5QxeWhydHZB9YTdzCH5EgLRwL2fudNck4,239
2
+ esi/admin.py,sha256=9i68WwW_gR0zsGhJKTWK2yMEi44EkhpAaOW0LDpVfM8,1176
3
+ esi/app_settings.py,sha256=2Jp_1myzKCL8A20RYvwQnQd04Ds_CBGsCqwDtsrYf0M,4289
4
+ esi/apps.py,sha256=HIu1niTkOXYmCzMVAjYcaFhHrrXeBbHvui6I44OCHXw,280
5
+ esi/checks.py,sha256=31puQdsrpRUJB-kedp2k7Evo0x2knTWQPZsCUUrJ3dY,1912
6
+ esi/clients.py,sha256=kFEV9T2GcfWRBhEM7njeantRR8g96LsXo6HNWeQCyoQ,25281
7
+ esi/decorators.py,sha256=OGGpbYaVZESk2BA9o69gBoBAdWUEGP1pUKohAEoykiM,10055
8
+ esi/errors.py,sha256=KfFtgX8Mys4uMoQtco0n_pQeaM83yVrRSyW6StXuUjo,308
9
+ esi/exceptions.py,sha256=-6aAr1JNEeOcVcVteDvSPopQkv5kGEj5sjnUlcJWTZQ,1506
10
+ esi/helpers.py,sha256=GZoDNTjZ0adW1ukhuGY1o58s_sZbvjhbVaJS95wZKpg,2207
11
+ esi/managers.py,sha256=zdri1aSJrSX9W_kwzbXq44CAAhdufikoOViaJntA41A,11443
12
+ esi/managers.pyi,sha256=3_GxkRNXK3OzvaTrgW31Syhsns1UBKjr669iFKuhxQE,2065
13
+ esi/models.py,sha256=MEY8jmHGwA8ZJjq37h-vC8LnOVn_Mnv5Gw0NoI9tkXk,11484
14
+ esi/openapi_clients.py,sha256=mnCtow0t1M38njnhrBdZUTSgSZQmx5YhD2d6FcBJpk8,45588
15
+ esi/rate_limiting.py,sha256=0lbFyRWbw2dPjJLXMEix8PDNh7nuAw8INaGf2cQaFDU,3353
16
+ esi/signals.py,sha256=JQbkrL9l0EbKoB1EgFl8CwFBlZ2GmWBM5HUp3Rc1uYw,512
17
+ esi/stubs.py,sha256=UakysEAq5V454oKbxyEUewncr5sCFZCgwHFh0SJvU3Y,30
18
+ esi/stubs.pyi,sha256=Lv2cs3CyPTgktLBaJIiWOQmVjtKx9IazSpnDETmkUlU,403694
19
+ esi/tasks.py,sha256=TaE_Q03oLk1ohkPw8KknXpIK-nY47C-oaGUUu4nr8pw,2658
20
+ esi/urls.py,sha256=B4EnmT-MZzs4F8a9ORK1ejAHbpGRN_V4TKks8ww3JGE,151
21
+ esi/views.py,sha256=cq2JkqSAwx-Nqi3amRUA9CKLu3ZLQYHSAH8c8g7xIQ4,3917
22
+ esi/aiopenapi3/client.py,sha256=sQyD2rd6TQnSOmrNfhRCaj0JXVF-Gaa63hxEV9_Z_Ts,2629
23
+ esi/aiopenapi3/plugins.py,sha256=YpDn5cRLi6t9dtpnmSHo-Wl6Or4R0LRQY22ZKWLFolk,8269
24
+ esi/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=G0hYe4DO_2lRYVw1gkkTZXG4XoC0pg6RFhHfl-pnJuk,389
25
+ esi/locale/cs_CZ/LC_MESSAGES/django.po,sha256=-WK9F86RU6pYgVgSfN9eif7XwDshm5W3LyOTNW-sl8U,1310
26
+ esi/locale/de/LC_MESSAGES/django.mo,sha256=6i5XCgVrdVvVpBXiqOMK7Vu3Nioyx3lNB5lJo2mGKIo,872
27
+ esi/locale/de/LC_MESSAGES/django.po,sha256=nGTw7t1EdMSV5iZBTxqxBuCVGvc-4hCuwKmwzjpDuWA,1556
28
+ esi/locale/en/LC_MESSAGES/django.mo,sha256=8MSrFKdA9w37xaeUITt-bf7YvoiakuFVu77ve7uSXFI,432
29
+ esi/locale/en/LC_MESSAGES/django.po,sha256=51eZv4ohuLPJyiyCpXcqCrapYC7wbtkm3acSpV2j3_o,1357
30
+ esi/locale/es/LC_MESSAGES/django.mo,sha256=x7cwRMNwFC45fqUqhCtvAh6EszRzy_f8LjWZudF5qzA,789
31
+ esi/locale/es/LC_MESSAGES/django.po,sha256=R8Bj13L9nyKdYWcjtpoEAUez2VQoxRyWsTcx2Gj0MRk,1560
32
+ esi/locale/fr_FR/LC_MESSAGES/django.mo,sha256=HwlRjR0DIj4qPh2ZIIGJKP4S6ZZCQEL5vzQw_aA8T98,695
33
+ esi/locale/fr_FR/LC_MESSAGES/django.po,sha256=yqdNVvMI1RpVyCuW0oT21dUtuqCpIgiCrPOY64exSEI,1569
34
+ esi/locale/it_IT/LC_MESSAGES/django.mo,sha256=1vk6hARb5BBsqaS4x6HlPsq2yOXYJggrc_chvwvaht0,929
35
+ esi/locale/it_IT/LC_MESSAGES/django.po,sha256=d2CSaZH0ifUFic9pgXh7QEdUKoEwhGYHueGj55tHoM8,1616
36
+ esi/locale/ja/LC_MESSAGES/django.mo,sha256=n3ybMhEiXyzP2CDdbXKHTQr1SJpWdc9qNJNTLpCKIFA,759
37
+ esi/locale/ja/LC_MESSAGES/django.po,sha256=cZ2kNU_g-9aV-94A3RgrhM5raAKhucfy7CWDcIdQyVM,1529
38
+ esi/locale/ko_KR/LC_MESSAGES/django.mo,sha256=OufSwdSS-EDh2ZWwI3w14hzm7GxYEVN8Egr_SXkN1bs,798
39
+ esi/locale/ko_KR/LC_MESSAGES/django.po,sha256=xathSIxDC2CsVFJzM_7mSAff8c6vVAEbDN_T35H9xV8,1564
40
+ esi/locale/nl_NL/LC_MESSAGES/django.mo,sha256=G0hYe4DO_2lRYVw1gkkTZXG4XoC0pg6RFhHfl-pnJuk,389
41
+ esi/locale/nl_NL/LC_MESSAGES/django.po,sha256=-WK9F86RU6pYgVgSfN9eif7XwDshm5W3LyOTNW-sl8U,1310
42
+ esi/locale/pl_PL/LC_MESSAGES/django.mo,sha256=G0hYe4DO_2lRYVw1gkkTZXG4XoC0pg6RFhHfl-pnJuk,389
43
+ esi/locale/pl_PL/LC_MESSAGES/django.po,sha256=-WK9F86RU6pYgVgSfN9eif7XwDshm5W3LyOTNW-sl8U,1310
44
+ esi/locale/ru/LC_MESSAGES/django.mo,sha256=sMuM9FAQOyhUpLCdpurHi6IibQJ6pLFJRU8SCybaQ4M,1126
45
+ esi/locale/ru/LC_MESSAGES/django.po,sha256=QhFuNiYCmKVe345oh5CMpw5mKGTvf0iBkv-Jiph0qVA,1871
46
+ esi/locale/sk/LC_MESSAGES/django.mo,sha256=7OdICmTEDnqfad8IAFo-vVCokHUWgZVR0Jx6P_eCvNc,507
47
+ esi/locale/sk/LC_MESSAGES/django.po,sha256=fzfSfDaBGJ9qw4O_ZbSeXFfFnKoE1sKraLFRKA0RwbM,1435
48
+ esi/locale/uk/LC_MESSAGES/django.mo,sha256=wd87XYqhWApcIX8RAmNtaOL63uCImEQ41zcyS6-BNxE,654
49
+ esi/locale/uk/LC_MESSAGES/django.po,sha256=fBt4pzR2Fg4tO_VcHubnkGDiH-kUXG6MySIV_-deu4c,1588
50
+ esi/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=gKM0bjRqR2jVghDK4pc3WiZLUDzKifg8guFceuY5bJ0,733
51
+ esi/locale/zh_Hans/LC_MESSAGES/django.po,sha256=7E2QBLQFeEisKLHo4_K1ctxSzHgy9dnjSNS_cyTe5TA,1504
52
+ esi/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ esi/management/commands/esi_clear_spec_cache.py,sha256=NWIKjwe2Y0zJBSlHtOOfpCO2FFClUbVIHFI53Yn3znk,813
54
+ esi/management/commands/generate_esi_stubs.py,sha256=K5MfFT--tM4ZGP0MI0e1FM3QtJSxbbgo920vV7KBDcA,31357
55
+ esi/management/commands/migrate_to_ssov2.py,sha256=x9W4xaefrNoG_dNscHIWrWTRk4SuVGIW0s44q2QBN9k,6427
56
+ esi/migrations/0001_initial.py,sha256=ItZOyyCRyfyxUhxCG1P08oylCY355gqOKGF3cJTQmcM,3396
57
+ esi/migrations/0002_scopes_20161208.py,sha256=AG3qVAoEXh8WTgxuvS1pgG8LxLGMzpqr-jqtMjy3qC0,2846
58
+ esi/migrations/0003_hide_tokens_from_admin_site.py,sha256=ffTU1m_XSe4_rxjj5oUlMl_kJMyYqU9pg6Ooe8knpXk,734
59
+ esi/migrations/0004_remove_unique_access_token.py,sha256=o9eHfouatHcInX9AqD-W8ZxJLlGCaveqxCL--QPkwz4,460
60
+ esi/migrations/0005_remove_token_length_limit.py,sha256=tVYffNcqAYEyRTXHOEoM27TA4jX9OfRtNZ2wxDxKZzo,676
61
+ esi/migrations/0006_remove_url_length_limit.py,sha256=7BIngBberQ4lrKcFkPZB9EYjTzV6JK5iNU4HPdi6Qas,459
62
+ esi/migrations/0007_fix_mysql_8_migration.py,sha256=-RB0wbiyowDCYbBUCMO152nDtB6b4KOzPc5RkWq4Rls,460
63
+ esi/migrations/0008_nullable_refresh_token.py,sha256=E2Nkk0GuG5Y15S0QtiZcrXki4zZaNQ8O_8EjcxqKzi4,477
64
+ esi/migrations/0009_set_old_tokens_to_sso_v1.py,sha256=8NqOauSw3_bU12MKyHEJOXe2uGozw7sDLamN6WgCUDU,417
65
+ esi/migrations/0010_set_new_tokens_to_sso_v2.py,sha256=d0YlpAWE6rQm7FQ9h39fF7eJTuOIgBLIouPKF7hj0gU,421
66
+ esi/migrations/0011_add_token_indices.py,sha256=xPvfdIUJ3ewc4zv-7oWRe2nWBL9k5VI74C5sVvQJDD8,1016
67
+ esi/migrations/0012_fix_token_type_choices.py,sha256=QyQs8pi5KqDtHUsbA7w7nH-AGda3GPvyUQs74RXEiGY,525
68
+ esi/migrations/0013_squashed_0012_fix_token_type_choices.py,sha256=eZnYDNevow9XrqlYEtSeGQy_PYDbxHU-GS_oRumGlrA,3951
69
+ esi/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ esi/static/esi/img/EVE_SSO_Login_Buttons_Large_Black.png,sha256=XjjhXr6EIum1ZsmXPXFOMDdYcezbkoAFmDjwC7fpi6E,2308
71
+ esi/static/esi/img/EVE_SSO_Login_Buttons_Large_White.png,sha256=FUsOnYwHvYTiLZN5dN-_nPgOfLfZmmuFpVLbpcnOXE8,2248
72
+ esi/static/esi/img/EVE_SSO_Login_Buttons_Small_Black.png,sha256=l-YlGVyegcTrfMRhdxDLorRAlkz5xMKiRR5LYvjEZYE,1622
73
+ esi/static/esi/img/EVE_SSO_Login_Buttons_Small_White.png,sha256=al3NRjIngZtrNzExqBqPFDI4d7oSRp6LSdT3p5o9GOU,1546
74
+ esi/templates/esi/select_token.html,sha256=qofOjKWHco_sSuoEJoLRsXP_doK_barHvkF7h5LLxjY,6941
75
+ esi/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
+ esi/templatetags/scope_tags.py,sha256=5-7vEwe-B91xo7oSnn-tSuudHSJCoGIhbddDpNrqUnw,167
77
+ esi/tests/__init__.py,sha256=yecRpeG9tsVnyeKm6jEo2QcO2QeYJF_vOT5ACzfNSec,3704
78
+ esi/tests/client_authed_pilot.py,sha256=GN0J59TcscHM9HZH6OaPODM9Zel3mvObjJ4Dmmzc2j8,1622
79
+ esi/tests/client_public_pilot.py,sha256=u6P-qbdYSvQ6A_MJqt8Jrkswt-u-FlvYDKtCvA5-PMo,1252
80
+ esi/tests/factories.py,sha256=2pjkSYKDfO50bzX1nNcUHz_FAAJs7k07u7R8om6AlP0,1375
81
+ esi/tests/factories_2.py,sha256=25NqVe9zzHkl4U1EN3R7pjdN2ahIBXxrrJhQzZhvw58,1972
82
+ esi/tests/jwt_factory.py,sha256=0Jj9TjEv18h2XVsRpYc7BWHr3CPtQJgfKeB-9mdHevk,4919
83
+ esi/tests/test_checks.py,sha256=ntq2ijuJ-6pxGruNh21rM4GlXDLVm-o3sy8DrFbjwEM,1846
84
+ esi/tests/test_clients.py,sha256=qoiv3OztuhjizNknZplJhwnMzAlX689MGad4Azu809M,44163
85
+ esi/tests/test_decorators.py,sha256=XvnubUR7ue3tG2chc2rSMw737tCN6r7SYxf-V8KJED8,16595
86
+ esi/tests/test_management_command.py,sha256=mtxfBtG6CHP1bTy1tJEO-djX4SQwMT3T_mqGnUIM6qs,9863
87
+ esi/tests/test_managers.py,sha256=CEpjXSXyVY6xxgrs0f9FnEh-KY9JPaKjKYiutXLLShE,24309
88
+ esi/tests/test_models.py,sha256=lDj5IcYgXHeOFTHXTsWGg13CSooFaxD0c51kJn_ytAc,13748
89
+ esi/tests/test_openapi.json,sha256=pyNjlFwB28slJju4zWrUGUODT8s9KO8S3FD0kZgFiMo,32938
90
+ esi/tests/test_openapi.py,sha256=OklWePEgPhYTkj72l0XcOzCqJBZdaZqMs9Zdf5-ZB7M,31297
91
+ esi/tests/test_swagger.json,sha256=HOrPgbvwm5N521QNcE3baWcZJkSjmuN_VWrR06wEQoo,17241
92
+ esi/tests/test_swagger_full.json,sha256=JCEAZNMFhkdZhquTx4lDhrqGgCrzzzlYU64HdbEv8E4,2548369
93
+ esi/tests/test_tasks.py,sha256=nIvfXax_8nQCxNQeT-4TJ84i0__t1qWe155z5rnsktQ,4399
94
+ esi/tests/test_templatetags.py,sha256=b68JWE3HvOlr2aUisJHsTsDS4e7IMjDeqTuzMqC7Re4,517
95
+ esi/tests/test_views.py,sha256=Kj_f2yIpmPG0kx-lAX_sfkaHlIpgbkm02ieA1V3o-k4,13073
96
+ esi/tests/threading_pilot.py,sha256=ax_dEdnTNibA-UQHqbZle_2dh_3jcHKRyrYSOKuE_6U,1931
97
+ django_esi-8.1.0.dist-info/licenses/LICENSE,sha256=WJ7YI-moTFb-uVrFjnzzhGJrnL9P2iqQe8NuED3hutI,35141
98
+ django_esi-8.1.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
99
+ django_esi-8.1.0.dist-info/METADATA,sha256=PObtUcD7q2brkUQJdN1kkVuT9Qq-QDakq9_VDs3KDtg,4813
100
+ django_esi-8.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: flit 3.12.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any