fast-clean-architecture 1.0.0__py3-none-any.whl → 1.1.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.
Files changed (27) hide show
  1. fast_clean_architecture/__init__.py +5 -6
  2. fast_clean_architecture/analytics.py +260 -0
  3. fast_clean_architecture/cli.py +563 -46
  4. fast_clean_architecture/config.py +47 -23
  5. fast_clean_architecture/error_tracking.py +201 -0
  6. fast_clean_architecture/exceptions.py +432 -12
  7. fast_clean_architecture/generators/__init__.py +11 -1
  8. fast_clean_architecture/generators/component_generator.py +407 -103
  9. fast_clean_architecture/generators/config_updater.py +186 -38
  10. fast_clean_architecture/generators/generator_factory.py +223 -0
  11. fast_clean_architecture/generators/package_generator.py +9 -7
  12. fast_clean_architecture/generators/template_validator.py +109 -9
  13. fast_clean_architecture/generators/validation_config.py +5 -3
  14. fast_clean_architecture/generators/validation_metrics.py +10 -6
  15. fast_clean_architecture/health.py +169 -0
  16. fast_clean_architecture/logging_config.py +52 -0
  17. fast_clean_architecture/metrics.py +108 -0
  18. fast_clean_architecture/protocols.py +406 -0
  19. fast_clean_architecture/templates/external.py.j2 +109 -32
  20. fast_clean_architecture/utils.py +50 -31
  21. fast_clean_architecture/validation.py +302 -0
  22. {fast_clean_architecture-1.0.0.dist-info → fast_clean_architecture-1.1.2.dist-info}/METADATA +131 -64
  23. fast_clean_architecture-1.1.2.dist-info/RECORD +38 -0
  24. fast_clean_architecture-1.0.0.dist-info/RECORD +0 -30
  25. {fast_clean_architecture-1.0.0.dist-info → fast_clean_architecture-1.1.2.dist-info}/WHEEL +0 -0
  26. {fast_clean_architecture-1.0.0.dist-info → fast_clean_architecture-1.1.2.dist-info}/entry_points.txt +0 -0
  27. {fast_clean_architecture-1.0.0.dist-info → fast_clean_architecture-1.1.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fast-clean-architecture
3
- Version: 1.0.0
3
+ Version: 1.1.2
4
4
  Summary: CLI tool for scaffolding clean architecture in FastAPI projects
5
5
  Project-URL: Homepage, https://github.com/alden-technologies/fast-clean-architecture
6
6
  Project-URL: Repository, https://github.com/alden-technologies/fast-clean-architecture
@@ -17,33 +17,27 @@ Classifier: Intended Audience :: Developers
17
17
  Classifier: License :: OSI Approved :: MIT License
18
18
  Classifier: Operating System :: OS Independent
19
19
  Classifier: Programming Language :: Python :: 3
20
- Classifier: Programming Language :: Python :: 3.8
21
20
  Classifier: Programming Language :: Python :: 3.9
22
21
  Classifier: Programming Language :: Python :: 3.10
23
22
  Classifier: Programming Language :: Python :: 3.11
24
23
  Classifier: Programming Language :: Python :: 3.12
25
24
  Classifier: Topic :: Software Development :: Code Generators
26
25
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
27
- Requires-Python: >=3.8
26
+ Requires-Python: >=3.9
28
27
  Requires-Dist: jinja2<4.0.0,>=3.1.0
29
28
  Requires-Dist: pathlib-mate<2.0.0,>=1.0.0
29
+ Requires-Dist: portalocker<3.0.0,>=2.0.0
30
+ Requires-Dist: psutil>=5.9.0
30
31
  Requires-Dist: pydantic<3.0.0,>=2.0.0
31
32
  Requires-Dist: pyyaml<7.0.0,>=6.0
32
33
  Requires-Dist: rich<14.0.0,>=13.0.0
34
+ Requires-Dist: structlog<24.0.0,>=23.0.0
33
35
  Requires-Dist: typer[all]<1.0.0,>=0.9.0
34
- Provides-Extra: dev
35
- Requires-Dist: bandit<2.0.0,>=1.7.0; extra == 'dev'
36
- Requires-Dist: black<24.0.0,>=23.0.0; extra == 'dev'
37
- Requires-Dist: isort<6.0.0,>=5.0.0; extra == 'dev'
38
- Requires-Dist: mypy<2.0.0,>=1.0.0; extra == 'dev'
39
- Requires-Dist: pytest-cov<5.0.0,>=4.0.0; extra == 'dev'
40
- Requires-Dist: pytest<8.0.0,>=7.0.0; extra == 'dev'
41
- Requires-Dist: safety<3.0.0,>=2.0.0; extra == 'dev'
42
36
  Description-Content-Type: text/markdown
43
37
 
44
38
  # Fast Clean Architecture
45
39
 
46
- [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
40
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
47
41
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
48
42
  [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
49
43
 
@@ -56,7 +50,10 @@ A powerful CLI tool for scaffolding clean architecture in FastAPI projects. Gene
56
50
  - **Code Generation**: Automated scaffolding for entities, repositories, services, and more
57
51
  - **Template System**: Customizable Jinja2 templates for code generation
58
52
  - **Type Safety**: Full type hints and Pydantic validation
59
- - **Modern Python**: Built for Python 3.8+ with async/await support
53
+ - **Modern Python**: Built for Python 3.9+ with async/await support
54
+ - **Analytics & Monitoring**: Built-in usage analytics, error tracking, and health monitoring
55
+ - **Security Features**: Template validation, input sanitization, and secure file operations
56
+ - **Batch Operations**: Create multiple components from YAML specifications
60
57
  - **CLI Interface**: Intuitive command-line interface with rich output
61
58
  - **Configuration Management**: YAML-based project configuration with versioning
62
59
 
@@ -74,37 +71,7 @@ pip install fast-clean-architecture
74
71
  poetry add fast-clean-architecture
75
72
  ```
76
73
 
77
- ### From Source
78
-
79
- #### Using pip
80
- ```bash
81
- git clone https://github.com/alden-technologies/fast-clean-architecture.git
82
- cd fast-clean-architecture
83
- pip install -e .
84
- ```
85
-
86
- #### Using Poetry
87
- ```bash
88
- git clone https://github.com/alden-technologies/fast-clean-architecture.git
89
- cd fast-clean-architecture
90
- poetry install
91
- ```
92
-
93
- ### Development Installation
94
-
95
- #### Using pip
96
- ```bash
97
- git clone https://github.com/alden-technologies/fast-clean-architecture.git
98
- cd fast-clean-architecture
99
- pip install -e ".[dev]"
100
- ```
101
-
102
- #### Using Poetry
103
- ```bash
104
- git clone https://github.com/alden-technologies/fast-clean-architecture.git
105
- cd fast-clean-architecture
106
- poetry install --with dev
107
- ```
74
+ **Note**: This project uses Poetry for dependency management. The `requirements.txt` and `requirements-dev.txt` files are provided for convenience and compatibility with pip-based workflows.
108
75
 
109
76
  ## 🏗️ Architecture Overview
110
77
 
@@ -130,14 +97,14 @@ Fast Clean Architecture follows the clean architecture pattern with these layers
130
97
  │ └── 📁 presentation/ # API layer
131
98
  │ ├── 📁 api/ # FastAPI routers
132
99
  │ └── 📁 schemas/ # Pydantic schemas
133
- └── 📄 fca-config.yaml # Project configuration
100
+ └── 📄 fca_config.yaml # Project configuration
134
101
  ```
135
102
 
136
103
  ## 📋 Prerequisites
137
104
 
138
105
  **Important**: This tool is designed to scaffold clean architecture components for FastAPI projects. You should have:
139
106
 
140
- - **Python 3.8+** installed on your system
107
+ - **Python 3.9+** installed on your system
141
108
  - **Basic understanding of FastAPI** and web API development
142
109
  - **Familiarity with clean architecture principles** (recommended but not required)
143
110
  - **A new or existing directory** where you want to create your FastAPI project structure
@@ -306,24 +273,52 @@ Your API will be available at `http://localhost:8000` with automatic documentati
306
273
  | **Presentation** | `api` | FastAPI routers and endpoints |
307
274
  | | `schemas` | Pydantic request/response schemas |
308
275
 
309
- ### CLI Options
276
+ ### CLI Commands
277
+
278
+ #### Core Commands
279
+ ```bash
280
+ # Project initialization
281
+ fca-scaffold init # Initialize new project
282
+ fca-scaffold create-system-context # Create system (bounded context)
283
+ fca-scaffold create-module # Create module within system
284
+ fca-scaffold create-component # Create individual components
285
+ ```
286
+
287
+ #### Batch Operations
288
+ ```bash
289
+ # Create multiple components from YAML specification
290
+ fca-scaffold batch-create components_spec.yaml
291
+ fca-scaffold batch-create my-spec.yaml --dry-run # Preview only
292
+ ```
310
293
 
294
+ #### Project Management
311
295
  ```bash
312
- # Global options
313
- fca-scaffold --help
314
- fca-scaffold --version
315
- fca-scaffold --dry-run # Preview changes without writing files
316
- fca-scaffold --force # Overwrite existing files
317
- fca-scaffold --verbose # Detailed output
318
-
319
- # Command-specific help
320
- fca-scaffold init --help
321
- fca-scaffold create-component --help
296
+ # Project status and configuration
297
+ fca-scaffold status # Show project overview
298
+ fca-scaffold config show # Display configuration
299
+ fca-scaffold config validate # Validate configuration
300
+ fca-scaffold system-status # Show system health and analytics
301
+ ```
302
+
303
+ #### Help and Information
304
+ ```bash
305
+ # Get help and version info
306
+ fca-scaffold version # Show version information
307
+ fca-scaffold --help # General help
308
+ ```
309
+
310
+ #### Global Options
311
+ ```bash
312
+ # Available for most commands
313
+ --dry-run # Preview changes without writing files
314
+ --force # Overwrite existing files
315
+ --verbose # Detailed output
316
+ --config # Specify custom config file
322
317
  ```
323
318
 
324
319
  ### Configuration File
325
320
 
326
- The `fca-config.yaml` file tracks your project structure:
321
+ The `fca_config.yaml` file tracks your project structure:
327
322
 
328
323
  ```yaml
329
324
  project:
@@ -352,6 +347,71 @@ project:
352
347
  api: ["user"]
353
348
  ```
354
349
 
350
+ ## 📊 Batch Component Creation
351
+
352
+ ### YAML Specification Format
353
+
354
+ Create multiple components efficiently using YAML specifications:
355
+
356
+ ```yaml
357
+ # components_spec.yaml
358
+ systems:
359
+ - name: admin
360
+ description: "Admin management system"
361
+ modules:
362
+ - name: authentication
363
+ description: "Admin authentication module"
364
+ components:
365
+ domain:
366
+ entities: [AdminUser, AdminRole]
367
+ value_objects: [AdminEmail, AdminPassword]
368
+ repositories: [AdminUserRepository]
369
+ application:
370
+ services: [AdminAuthService]
371
+ commands: [CreateAdminUser, UpdateAdminUser]
372
+ queries: [GetAdminUser, ListAdminUsers]
373
+ infrastructure:
374
+ repositories: [AdminUserRepository]
375
+ models: [AdminUserModel]
376
+ external: [AdminEmailService]
377
+ presentation:
378
+ api: [AdminAuthRouter]
379
+ schemas: [AdminUserSchema, AdminAuthSchema]
380
+ ```
381
+
382
+ ### Usage
383
+
384
+ ```bash
385
+ # Create all components from specification
386
+ fca-scaffold batch-create components_spec.yaml
387
+
388
+ # Preview what would be created
389
+ fca-scaffold batch-create components_spec.yaml --dry-run
390
+
391
+ # Force overwrite existing files
392
+ fca-scaffold batch-create components_spec.yaml --force
393
+ ```
394
+
395
+ ## 📊 System Monitoring
396
+
397
+ ### Health and Analytics
398
+
399
+ Fast Clean Architecture includes built-in monitoring capabilities:
400
+
401
+ ```bash
402
+ # View system health and usage analytics
403
+ fca-scaffold system-status
404
+
405
+ # Detailed system information
406
+ fca-scaffold system-status --verbose
407
+ ```
408
+
409
+ **Features:**
410
+ - **Usage Analytics**: Track command usage and component creation patterns
411
+ - **Error Tracking**: Monitor and log errors with detailed context
412
+ - **Health Monitoring**: System resource usage and performance metrics
413
+ - **Security Monitoring**: Template validation and input sanitization tracking
414
+
355
415
  ## 🎨 Customization
356
416
 
357
417
  ### Custom Templates
@@ -423,9 +483,7 @@ pytest -v
423
483
  ```bash
424
484
  git clone https://github.com/alden-technologies/fast-clean-architecture.git
425
485
  cd fast-clean-architecture
426
- python -m venv venv
427
- source venv/bin/activate # On Windows: venv\Scripts\activate
428
- pip install -e ".[dev]"
486
+ poetry install --with dev
429
487
  ```
430
488
 
431
489
  ### Code Quality
@@ -447,11 +505,20 @@ bandit -r fast_clean_architecture
447
505
  safety check
448
506
  ```
449
507
 
508
+ ### Security Updates
509
+
510
+ This project maintains up-to-date dependencies with security patches:
511
+
512
+ - **Black 24.3.0+**: Fixes CVE-2024-21503 (ReDoS vulnerability)
513
+ - **Pip 25.0+**: Fixes PVE-2025-75180 (malicious wheel execution)
514
+ - **Setuptools 78.1.1+**: Fixes CVE-2025-47273 (path traversal vulnerability)
515
+
516
+ All dependencies are pinned with SHA256 hashes for supply chain security.
517
+
450
518
  ### Pre-commit Hooks
451
519
 
452
520
  ```bash
453
- pip install pre-commit
454
- pre-commit install
521
+ poetry run pre-commit install
455
522
  ```
456
523
 
457
524
  ## 📖 Examples
@@ -538,4 +605,4 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
538
605
 
539
606
  ---
540
607
 
541
- **Made with ❤️ by [Alden Technologies](https://aldentechnologies.com)**
608
+ **Made with ❤️ by [Adegbenga Agoro](https://www.adegbengaagoro.co), [Founder of Alden Technologies](https://www.aldentechnologies.com)**
@@ -0,0 +1,38 @@
1
+ fast_clean_architecture/__init__.py,sha256=Px5-n1SqwkAYF2UnNimI1zdixKV6Kx5UEm6DVvgQ_Z8,533
2
+ fast_clean_architecture/analytics.py,sha256=2EC8iF1WERhoJm_XCATkUnkBvLIm8lxp9-Ukl4sf4dU,8733
3
+ fast_clean_architecture/cli.py,sha256=JIeRpUPG44ISNJX3O1sgvDO1eTFw3GM6NdN4kniZr0I,37662
4
+ fast_clean_architecture/config.py,sha256=UAyzEifdqrbpZDDirVR_E2yq5rlTJyv19Iixd01ufiI,19969
5
+ fast_clean_architecture/error_tracking.py,sha256=uyOEg6IZLNd-1u57bCCLpTzeBwP02pjVxRivXy1GyVM,6034
6
+ fast_clean_architecture/exceptions.py,sha256=0CTkgDjG-Ilqc9Vex02ofgPCSBfmNNceK6ZGwCIF8n0,16578
7
+ fast_clean_architecture/health.py,sha256=yvvGAOW_VXiuX7J4Od-IN7yazSA9fw8ugvfyb-hKzeU,5294
8
+ fast_clean_architecture/logging_config.py,sha256=6I82AWCFGMdP5KFeDiL_wtXk2RLMcDL0_-u9Ka8TW4M,1580
9
+ fast_clean_architecture/metrics.py,sha256=-7ln9E8UTSTBXWr7QhPRwpkGl_H1gKjmOMq79m6ASa0,3219
10
+ fast_clean_architecture/protocols.py,sha256=45IQhACDJj8KvlHLAETlSpf_F5BTkivl52MgUJwizhs,12547
11
+ fast_clean_architecture/utils.py,sha256=TbD7evQsKf_2KAr4RJ8iVhnpgBLA1FY6VaRd0CJSwEU,18837
12
+ fast_clean_architecture/validation.py,sha256=Iu9KyaBZX1VznM_bMb_4Jvu8o4XtAQoUxaWcA1UhNkI,10873
13
+ fast_clean_architecture/generators/__init__.py,sha256=bpq_b3lMiOBcn8bJhC3UCVLsSxIj9bGaSteGgN-Lgkc,560
14
+ fast_clean_architecture/generators/component_generator.py,sha256=xlYnqeK55Y5pjYOuz4OaRenQkng0hYe6Kx1MICr9lSs,50128
15
+ fast_clean_architecture/generators/config_updater.py,sha256=faSjwPX_sFWl8-qq4rl0HfOMUoZNKA1HwX3uP0BVCT4,16711
16
+ fast_clean_architecture/generators/generator_factory.py,sha256=YB_qlGcdNWJsu1ZFP46ik3eK7fjZFCCFo4hfSkwQYMc,7746
17
+ fast_clean_architecture/generators/package_generator.py,sha256=S234nCTHezdGMor0IaxbyWUyO3T68kAx_pJuHVKJHog,5978
18
+ fast_clean_architecture/generators/template_validator.py,sha256=7N1_Sn3BqPIWnv0oKZvSvGgi3y64FKShSIvkFlrlbVA,23651
19
+ fast_clean_architecture/generators/validation_config.py,sha256=KmFL1WxDpZ989sPOnREN7fpw1emgRQnKw2aswyTr93U,2394
20
+ fast_clean_architecture/generators/validation_metrics.py,sha256=mQ5pUVH2zg-gfaTHm0lf7-n6X7evTEGPeN__OPeaqS0,6644
21
+ fast_clean_architecture/templates/__init__.py,sha256=uweRUmrNZosbwDlnM10Nfu9rKzPcEqXEr6BchsSAr58,146
22
+ fast_clean_architecture/templates/__init__.py.j2,sha256=ogycgpBmYv-O1yoyQK9-Ki_x4FlYgb58mvhPrhiQNpA,618
23
+ fast_clean_architecture/templates/api.py.j2,sha256=jPt1i84GuGEyeftJ8IythTrcTzac1GGyd4lQedl7_FA,2362
24
+ fast_clean_architecture/templates/command.py.j2,sha256=jjmteEF-UqXdlhM487SSUHzeaz2l8vHq6BzOykw0gJM,612
25
+ fast_clean_architecture/templates/entity.py.j2,sha256=5AIP6LwuusVNHiiAhph0bpFfnVzPhfnBdDMwZi_gx_s,1458
26
+ fast_clean_architecture/templates/external.py.j2,sha256=dXqm9Y_EsoFXErF0ukdAzOwQbZy667gjQtU7ZD5iWnw,5418
27
+ fast_clean_architecture/templates/infrastructure_repository.py.j2,sha256=nxKe7zpSRnpZkqpBrlhOkKLu2vERAiFhrt9iWU3K6aU,2543
28
+ fast_clean_architecture/templates/model.py.j2,sha256=f3toWIDu5nX5wkHKPbk0-XXow3RLP7D5VknhLPNwSHo,1113
29
+ fast_clean_architecture/templates/query.py.j2,sha256=7AwqC8BpzGq6L4T-g3Wo8Xj_SPOK0L1ke1RkJ4DQsVU,594
30
+ fast_clean_architecture/templates/repository.py.j2,sha256=YsjPpVakZR2A-JmsK-VYE6bYDhmeRBfNtID9SdhsGj8,1694
31
+ fast_clean_architecture/templates/schemas.py.j2,sha256=iwZT42LxqgNL4ms_-uQkWKWQWaiMDflWzdlWMBke_3M,755
32
+ fast_clean_architecture/templates/service.py.j2,sha256=utNp_E7bywlMfjY9SHzzrH4isr-WeXpnRIb15XkZrj4,3926
33
+ fast_clean_architecture/templates/value_object.py.j2,sha256=IVI69cuYTa_7g1s9T5guigIqeSl1lXFapWFu-XKzYjE,919
34
+ fast_clean_architecture-1.1.2.dist-info/METADATA,sha256=xh-9NH9spbwIDd5rXdx2SeoeWNLTK-jJzo-w_qJjmOk,19348
35
+ fast_clean_architecture-1.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
36
+ fast_clean_architecture-1.1.2.dist-info/entry_points.txt,sha256=5R_7kBX0dYEq6n8lyTmv7Sn4Rs3pjpLqGX-mB_3FL1w,65
37
+ fast_clean_architecture-1.1.2.dist-info/licenses/LICENSE,sha256=wpM1B1Znw_YrC9L_R0jiXPHWz5iM_tNW4UOvBtl026s,1075
38
+ fast_clean_architecture-1.1.2.dist-info/RECORD,,
@@ -1,30 +0,0 @@
1
- fast_clean_architecture/__init__.py,sha256=1B-oli8nUGzjXVe62dN_uAV6fTQlt_wNZmlbzLZs1C8,524
2
- fast_clean_architecture/cli.py,sha256=bug84CZx87zlAw7eCRGMs6-wVtFDER9snAvWPv-GxEs,15447
3
- fast_clean_architecture/config.py,sha256=W-H4r3sPHbx4CSp8_wC3VylnRRYngzw2OosC2__V0RE,18742
4
- fast_clean_architecture/exceptions.py,sha256=cFgIcHGlY7EqIeQvt95_D57AWZxCJja9XVt_MQo4gFE,1667
5
- fast_clean_architecture/utils.py,sha256=rrdiYUyj-xQ24nCaK5fspFvHIsjpspJAhxc64jzWgrk,18295
6
- fast_clean_architecture/generators/__init__.py,sha256=xgd1_9vo1DZ5DgKZainvK-rqoRVKz8Nvo7X34uDOdIs,280
7
- fast_clean_architecture/generators/component_generator.py,sha256=zPBkkTq0gTRPQGeaatCmqTeJt5QLmgN2k3kNZwzXfao,39089
8
- fast_clean_architecture/generators/config_updater.py,sha256=5SNeOszx_9urd8_NBM3aDDqw_Pu4cyWW9gLE_IMwo3c,10518
9
- fast_clean_architecture/generators/package_generator.py,sha256=pMi-SNMe2mUuwmE7YrJnfJNJrYmMk6jgTp7hJV_bozE,5896
10
- fast_clean_architecture/generators/template_validator.py,sha256=xOBRxvCLaR6cE0q3CgVdMjN5pHud8tJEWIOEMh4kRBA,20399
11
- fast_clean_architecture/generators/validation_config.py,sha256=OU46Ye2ik9AH51009faWIoe-GPzg-b8A4D2JaoFZSDY,2313
12
- fast_clean_architecture/generators/validation_metrics.py,sha256=owUYjqbDIttg4ZLXKvUkjqRQqxsrYe2f009oTrzbXXU,6493
13
- fast_clean_architecture/templates/__init__.py,sha256=uweRUmrNZosbwDlnM10Nfu9rKzPcEqXEr6BchsSAr58,146
14
- fast_clean_architecture/templates/__init__.py.j2,sha256=ogycgpBmYv-O1yoyQK9-Ki_x4FlYgb58mvhPrhiQNpA,618
15
- fast_clean_architecture/templates/api.py.j2,sha256=jPt1i84GuGEyeftJ8IythTrcTzac1GGyd4lQedl7_FA,2362
16
- fast_clean_architecture/templates/command.py.j2,sha256=jjmteEF-UqXdlhM487SSUHzeaz2l8vHq6BzOykw0gJM,612
17
- fast_clean_architecture/templates/entity.py.j2,sha256=5AIP6LwuusVNHiiAhph0bpFfnVzPhfnBdDMwZi_gx_s,1458
18
- fast_clean_architecture/templates/external.py.j2,sha256=SbZ8GEp9Q02bQTI59k0wDE5lDWVJWa7wI6VOBpsoAd4,1844
19
- fast_clean_architecture/templates/infrastructure_repository.py.j2,sha256=nxKe7zpSRnpZkqpBrlhOkKLu2vERAiFhrt9iWU3K6aU,2543
20
- fast_clean_architecture/templates/model.py.j2,sha256=f3toWIDu5nX5wkHKPbk0-XXow3RLP7D5VknhLPNwSHo,1113
21
- fast_clean_architecture/templates/query.py.j2,sha256=7AwqC8BpzGq6L4T-g3Wo8Xj_SPOK0L1ke1RkJ4DQsVU,594
22
- fast_clean_architecture/templates/repository.py.j2,sha256=YsjPpVakZR2A-JmsK-VYE6bYDhmeRBfNtID9SdhsGj8,1694
23
- fast_clean_architecture/templates/schemas.py.j2,sha256=iwZT42LxqgNL4ms_-uQkWKWQWaiMDflWzdlWMBke_3M,755
24
- fast_clean_architecture/templates/service.py.j2,sha256=utNp_E7bywlMfjY9SHzzrH4isr-WeXpnRIb15XkZrj4,3926
25
- fast_clean_architecture/templates/value_object.py.j2,sha256=IVI69cuYTa_7g1s9T5guigIqeSl1lXFapWFu-XKzYjE,919
26
- fast_clean_architecture-1.0.0.dist-info/METADATA,sha256=UAswG12fAvPtXkdOGttTx-o3Dh10jIUAtdx9jYoHFeg,16765
27
- fast_clean_architecture-1.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
28
- fast_clean_architecture-1.0.0.dist-info/entry_points.txt,sha256=5R_7kBX0dYEq6n8lyTmv7Sn4Rs3pjpLqGX-mB_3FL1w,65
29
- fast_clean_architecture-1.0.0.dist-info/licenses/LICENSE,sha256=wpM1B1Znw_YrC9L_R0jiXPHWz5iM_tNW4UOvBtl026s,1075
30
- fast_clean_architecture-1.0.0.dist-info/RECORD,,