python-corekit 0.1.0__tar.gz → 0.1.1__tar.gz
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.
- {python_corekit-0.1.0/python_corekit.egg-info → python_corekit-0.1.1}/PKG-INFO +8 -9
- {python_corekit-0.1.0 → python_corekit-0.1.1}/README.md +7 -8
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/config/settings.py +3 -3
- python_corekit-0.1.1/corekit/crypto/constants.py +7 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/pyproject.toml +1 -1
- {python_corekit-0.1.0 → python_corekit-0.1.1/python_corekit.egg-info}/PKG-INFO +8 -9
- python_corekit-0.1.0/corekit/crypto/constants.py +0 -7
- {python_corekit-0.1.0 → python_corekit-0.1.1}/LICENSE +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/api/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/api/handler.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/api/responses.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/api/routers.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/concurrency/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/concurrency/decorators.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/concurrency/thread_local.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/concurrency/worker.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/config/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/config/loader.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/config/sources.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/connectable.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/decorators.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/redis/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/redis/connection.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/registry.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/connection.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/fields/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/fields/jsonb.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/migration/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/migration/base.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/migration/operations.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/migration/registry.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/migration/table.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/query.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/table.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/constants.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/crypto/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/crypto/enum.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/crypto/hasher.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/data/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/data/dataset.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/data/expressions/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/data/expressions/comparison.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/data/expressions/expression.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/data/record.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/data/stats.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/decorators/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/decorators/exception_handling.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/decorators/warnings.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/docker/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/docker/watchdog.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/connection.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/extract/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/extract/extractor.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/extract/schemas.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/load/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/load/loader.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/load/schemas.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/orchestrator.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/schemas.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/transform/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/transform/schemas.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/etl/transform/transformer.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/events/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/events/enum.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/events/frames.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/events/models.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/events/publisher.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/events/reader.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/events/sse.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/events/websocket.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/exceptions/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/exceptions/base.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/exceptions/custom/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/exceptions/http/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/exceptions/http/exceptions.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/exceptions/types.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/files/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/files/base.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/files/enum.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/files/json.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/files/pickle.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/files/toml.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/http/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/http/client.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/http/exponential_backoff.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/http/response.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/log_monitor/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/log_monitor/constants.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/log_monitor/models.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/log_monitor/service.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/notifications/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/notifications/base.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/notifications/models.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/observability/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/observability/benchmarkable.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/observability/loggable.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/observability/timing/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/observability/timing/constants.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/observability/timing/split.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/observability/timing/timer.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/py.typed +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/registry/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/registry/registry.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/schemas/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/schemas/dataclasses/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/schemas/enum.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/schemas/models/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/schemas/models/arbitrary.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/schemas/models/date_models.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/schemas/pydantic/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/schemas/pydantic/fields.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/schemas/types.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/serialization/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/serialization/enum.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/serialization/serializable.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/serialization/serializer.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/utils/__init__.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/utils/ids.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/utils/raise_exc.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/utils/time.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/utils/validators.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/utils/void.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/python_corekit.egg-info/SOURCES.txt +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/python_corekit.egg-info/dependency_links.txt +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/python_corekit.egg-info/requires.txt +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/python_corekit.egg-info/top_level.txt +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/setup.cfg +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/setup.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_api.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_architecture.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_concurrency.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_config.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_connections.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_data.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_docker.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_etl.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_events.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_files.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_imports.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_imports_are_top_level.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_log_monitor.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_migration.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_redis.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_registry.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_requests.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_serialization.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_sql.py +0 -0
- {python_corekit-0.1.0 → python_corekit-0.1.1}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-corekit
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Shared foundations for Python projects: logging, benchmarking, registries, FastAPI routers/handlers, data stores, and ETL
|
|
5
5
|
Author: Steven Jacobsen
|
|
6
6
|
License-Expression: MIT
|
|
@@ -47,14 +47,12 @@ Requires Python 3.11+.
|
|
|
47
47
|
pip install python-corekit
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
corekit can be cloned and built by anyone, including inside a Docker build.
|
|
50
|
+
The distribution is `python-corekit`; the import is `corekit`.
|
|
52
51
|
|
|
53
52
|
Every dependency corekit needs is installed with it. There are no optional
|
|
54
53
|
extras to remember, and no import that fails because something was left out.
|
|
55
54
|
|
|
56
|
-
|
|
57
|
-
release rather than tracking whatever is newest:
|
|
55
|
+
Pin a compatible release rather than tracking whatever is newest:
|
|
58
56
|
|
|
59
57
|
```
|
|
60
58
|
python-corekit~=0.1.0
|
|
@@ -371,7 +369,8 @@ Imports go downward only.
|
|
|
371
369
|
|
|
372
370
|
```
|
|
373
371
|
corekit/
|
|
374
|
-
config
|
|
372
|
+
config/ settings, sources, loader
|
|
373
|
+
constants.py
|
|
375
374
|
|
|
376
375
|
exceptions/ error types
|
|
377
376
|
|
|
@@ -404,13 +403,13 @@ layering deliberately.
|
|
|
404
403
|
## Development
|
|
405
404
|
|
|
406
405
|
```bash
|
|
407
|
-
pip install -e ".[dev
|
|
406
|
+
pip install -e ".[dev]"
|
|
408
407
|
pytest
|
|
409
408
|
ruff format . && ruff check --fix .
|
|
410
409
|
```
|
|
411
410
|
|
|
412
|
-
`tests/test_imports.py` imports every module in the package
|
|
413
|
-
|
|
411
|
+
`tests/test_imports.py` imports every module in the package, so a module that
|
|
412
|
+
nothing else happens to import still has to be importable.
|
|
414
413
|
|
|
415
414
|
## Licence
|
|
416
415
|
|
|
@@ -12,14 +12,12 @@ Requires Python 3.11+.
|
|
|
12
12
|
pip install python-corekit
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
corekit can be cloned and built by anyone, including inside a Docker build.
|
|
15
|
+
The distribution is `python-corekit`; the import is `corekit`.
|
|
17
16
|
|
|
18
17
|
Every dependency corekit needs is installed with it. There are no optional
|
|
19
18
|
extras to remember, and no import that fails because something was left out.
|
|
20
19
|
|
|
21
|
-
|
|
22
|
-
release rather than tracking whatever is newest:
|
|
20
|
+
Pin a compatible release rather than tracking whatever is newest:
|
|
23
21
|
|
|
24
22
|
```
|
|
25
23
|
python-corekit~=0.1.0
|
|
@@ -336,7 +334,8 @@ Imports go downward only.
|
|
|
336
334
|
|
|
337
335
|
```
|
|
338
336
|
corekit/
|
|
339
|
-
config
|
|
337
|
+
config/ settings, sources, loader
|
|
338
|
+
constants.py
|
|
340
339
|
|
|
341
340
|
exceptions/ error types
|
|
342
341
|
|
|
@@ -369,13 +368,13 @@ layering deliberately.
|
|
|
369
368
|
## Development
|
|
370
369
|
|
|
371
370
|
```bash
|
|
372
|
-
pip install -e ".[dev
|
|
371
|
+
pip install -e ".[dev]"
|
|
373
372
|
pytest
|
|
374
373
|
ruff format . && ruff check --fix .
|
|
375
374
|
```
|
|
376
375
|
|
|
377
|
-
`tests/test_imports.py` imports every module in the package
|
|
378
|
-
|
|
376
|
+
`tests/test_imports.py` imports every module in the package, so a module that
|
|
377
|
+
nothing else happens to import still has to be importable.
|
|
379
378
|
|
|
380
379
|
## Licence
|
|
381
380
|
|
|
@@ -89,9 +89,9 @@ class CryptoSettings(BaseModel):
|
|
|
89
89
|
"""
|
|
90
90
|
Hashing configuration.
|
|
91
91
|
|
|
92
|
-
``salt`` has no default on purpose
|
|
93
|
-
|
|
94
|
-
one is supplied.
|
|
92
|
+
``salt`` has no default on purpose. A salt shipped with a library is shared
|
|
93
|
+
by every install, which defeats the point of salting, so hashing raises
|
|
94
|
+
until one is supplied.
|
|
95
95
|
"""
|
|
96
96
|
|
|
97
97
|
salt: str | None = None
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
HASH_JOINER = ":"
|
|
2
|
+
EMPTY_HASH = ""
|
|
3
|
+
|
|
4
|
+
# There is deliberately no default salt. A salt shipped with a library is shared
|
|
5
|
+
# by every install, which defeats the purpose of salting. Supply one through
|
|
6
|
+
# configuration -- see `corekit.config.CorekitSettings.crypto_salt` and
|
|
7
|
+
# `corekit.crypto.hasher.Hasher`.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-corekit"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Shared foundations for Python projects: logging, benchmarking, registries, FastAPI routers/handlers, data stores, and ETL"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-corekit
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Shared foundations for Python projects: logging, benchmarking, registries, FastAPI routers/handlers, data stores, and ETL
|
|
5
5
|
Author: Steven Jacobsen
|
|
6
6
|
License-Expression: MIT
|
|
@@ -47,14 +47,12 @@ Requires Python 3.11+.
|
|
|
47
47
|
pip install python-corekit
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
corekit can be cloned and built by anyone, including inside a Docker build.
|
|
50
|
+
The distribution is `python-corekit`; the import is `corekit`.
|
|
52
51
|
|
|
53
52
|
Every dependency corekit needs is installed with it. There are no optional
|
|
54
53
|
extras to remember, and no import that fails because something was left out.
|
|
55
54
|
|
|
56
|
-
|
|
57
|
-
release rather than tracking whatever is newest:
|
|
55
|
+
Pin a compatible release rather than tracking whatever is newest:
|
|
58
56
|
|
|
59
57
|
```
|
|
60
58
|
python-corekit~=0.1.0
|
|
@@ -371,7 +369,8 @@ Imports go downward only.
|
|
|
371
369
|
|
|
372
370
|
```
|
|
373
371
|
corekit/
|
|
374
|
-
config
|
|
372
|
+
config/ settings, sources, loader
|
|
373
|
+
constants.py
|
|
375
374
|
|
|
376
375
|
exceptions/ error types
|
|
377
376
|
|
|
@@ -404,13 +403,13 @@ layering deliberately.
|
|
|
404
403
|
## Development
|
|
405
404
|
|
|
406
405
|
```bash
|
|
407
|
-
pip install -e ".[dev
|
|
406
|
+
pip install -e ".[dev]"
|
|
408
407
|
pytest
|
|
409
408
|
ruff format . && ruff check --fix .
|
|
410
409
|
```
|
|
411
410
|
|
|
412
|
-
`tests/test_imports.py` imports every module in the package
|
|
413
|
-
|
|
411
|
+
`tests/test_imports.py` imports every module in the package, so a module that
|
|
412
|
+
nothing else happens to import still has to be importable.
|
|
414
413
|
|
|
415
414
|
## Licence
|
|
416
415
|
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
HASH_JOINER = ":"
|
|
2
|
-
EMPTY_HASH = ""
|
|
3
|
-
|
|
4
|
-
# NOTE: a hardcoded CRYPTO_SALT previously lived here and is still present in this
|
|
5
|
-
# repository's git history. It must be considered compromised and must never be
|
|
6
|
-
# reintroduced. The salt is now supplied through configuration -- see
|
|
7
|
-
# `corekit.config.CorekitSettings.crypto_salt` and `corekit.crypto.hasher.Hasher`.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_corekit-0.1.0 → python_corekit-0.1.1}/corekit/connections/sql/migration/operations.py
RENAMED
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|