strapi-kit 0.0.1__py3-none-any.whl → 0.0.2__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.
- strapi_kit/_version.py +2 -2
- {strapi_kit-0.0.1.dist-info → strapi_kit-0.0.2.dist-info}/METADATA +12 -12
- {strapi_kit-0.0.1.dist-info → strapi_kit-0.0.2.dist-info}/RECORD +5 -5
- {strapi_kit-0.0.1.dist-info → strapi_kit-0.0.2.dist-info}/WHEEL +0 -0
- {strapi_kit-0.0.1.dist-info → strapi_kit-0.0.2.dist-info}/licenses/LICENSE +0 -0
strapi_kit/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.0.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 0,
|
|
31
|
+
__version__ = version = '0.0.2'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 0, 2)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: strapi-kit
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: A modern Python client for Strapi CMS with import/export capabilities
|
|
5
5
|
Project-URL: Homepage, https://github.com/mehdizare/strapi-kit
|
|
6
6
|
Project-URL: Documentation, https://mehdizare.github.io/strapi-kit/
|
|
@@ -16,6 +16,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
21
|
Requires-Python: >=3.12
|
|
21
22
|
Requires-Dist: httpx>=0.28.1
|
|
@@ -45,7 +46,11 @@ Description-Content-Type: text/markdown
|
|
|
45
46
|
|
|
46
47
|
# strapi-kit
|
|
47
48
|
|
|
48
|
-
|
|
49
|
+
[](https://github.com/MehdiZare/strapi-kit/actions/workflows/ci.yml)
|
|
50
|
+
[](https://codecov.io/gh/MehdiZare/strapi-kit)
|
|
51
|
+
[](https://pypi.org/project/strapi-kit/)
|
|
52
|
+
[](https://pypi.org/project/strapi-kit/)
|
|
53
|
+
[](https://github.com/MehdiZare/strapi-kit/blob/main/LICENSE)
|
|
49
54
|
|
|
50
55
|
A modern Python client for Strapi CMS with comprehensive import/export capabilities.
|
|
51
56
|
|
|
@@ -954,33 +959,28 @@ cd strapi-kit
|
|
|
954
959
|
python -m venv .venv
|
|
955
960
|
source .venv/bin/activate # On Windows: .venv\Scripts\activate
|
|
956
961
|
|
|
957
|
-
# Install dependencies (uv
|
|
962
|
+
# Install dependencies including pre-commit (uv recommended)
|
|
958
963
|
uv pip install -e ".[dev]"
|
|
959
964
|
# Or with pip
|
|
960
965
|
pip install -e ".[dev]"
|
|
961
966
|
|
|
962
967
|
# Install pre-commit hooks (one-time setup)
|
|
963
|
-
make install-hooks
|
|
964
|
-
# Or manually:
|
|
965
968
|
pre-commit install
|
|
966
969
|
```
|
|
967
970
|
|
|
968
971
|
### Pre-commit Hooks
|
|
969
972
|
|
|
970
|
-
This project uses pre-commit hooks to ensure code quality
|
|
973
|
+
This project uses pre-commit hooks to ensure code quality. The `pre-commit` package is included in `[dev]` dependencies.
|
|
971
974
|
|
|
972
975
|
```bash
|
|
973
|
-
# Install
|
|
974
|
-
make install-hooks
|
|
975
|
-
|
|
976
|
-
# Or manually:
|
|
976
|
+
# Install hooks (one-time setup, after installing dev dependencies)
|
|
977
977
|
pre-commit install
|
|
978
978
|
|
|
979
979
|
# Run hooks manually on all files
|
|
980
|
-
|
|
980
|
+
pre-commit run --all-files
|
|
981
981
|
|
|
982
982
|
# Update hooks to latest versions
|
|
983
|
-
|
|
983
|
+
pre-commit autoupdate
|
|
984
984
|
```
|
|
985
985
|
|
|
986
986
|
**What the hooks check:**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
strapi_kit/__init__.py,sha256=GUV-N5HRlNntClmSVgCUli-vNhmsWb8VyS6huk_TV3Y,2177
|
|
2
2
|
strapi_kit/__version__.py,sha256=oLc_AUMPwiL7J2vgrvXdzVqbSQl2hqkPZ6dNfUx1lTU,478
|
|
3
|
-
strapi_kit/_version.py,sha256=
|
|
3
|
+
strapi_kit/_version.py,sha256=huLsL1iGeXWQKZ8bjwDdIWC7JOkj3wnzBh-HFMZl1PY,704
|
|
4
4
|
strapi_kit/config_provider.py,sha256=T0KQcNLD_2CvC78Efeq9TBwbxN1WnKdWMekrg7fKQe0,12251
|
|
5
5
|
strapi_kit/protocols.py,sha256=wMeGSFCSxeamv2YDzWWWSVJtiGrm__1Xg00QighEbQ4,10971
|
|
6
6
|
strapi_kit/auth/__init__.py,sha256=VhjbOiyBVSafz3lf2a43bnbSm0J8PG-lguIKHlRplx8,117
|
|
@@ -49,7 +49,7 @@ strapi_kit/parsers/version_detecting.py,sha256=i6Wh7NSQYPWSv0GR63ZJLuPF6BqFwQ_Y7
|
|
|
49
49
|
strapi_kit/utils/__init__.py,sha256=kQdkXpAw3IgAG4fcKF7FswYag8o7MUWnwM-AA578_4g,368
|
|
50
50
|
strapi_kit/utils/rate_limiter.py,sha256=sm-p7aAqsri0sHsj3bYbv9ib022goBXGtMgTsFEIlUs,6306
|
|
51
51
|
strapi_kit/utils/uid.py,sha256=DRRa9MNkcQDI2RNEkwAjWK9HMx8Sg4Waxi8uA2fdPAg,2636
|
|
52
|
-
strapi_kit-0.0.
|
|
53
|
-
strapi_kit-0.0.
|
|
54
|
-
strapi_kit-0.0.
|
|
55
|
-
strapi_kit-0.0.
|
|
52
|
+
strapi_kit-0.0.2.dist-info/METADATA,sha256=XgFc69X1JvE_MJ8TppUDXbz1yGTkmk9xMU5EQTiJFvU,31236
|
|
53
|
+
strapi_kit-0.0.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
54
|
+
strapi_kit-0.0.2.dist-info/licenses/LICENSE,sha256=lN0YUtXlAFBt9MNYr2F0GJEYdprxDOTIqcVhKxMsaTI,1067
|
|
55
|
+
strapi_kit-0.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|