python-flashapi 0.1.0__tar.gz → 0.1.2__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.
Files changed (74) hide show
  1. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/PKG-INFO +10 -10
  2. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/README.md +6 -6
  3. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/pyproject.toml +4 -4
  4. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/.github/workflows/ci.yml +0 -0
  5. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/.gitignore +0 -0
  6. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/CHANGELOG.md +0 -0
  7. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/LICENSE +0 -0
  8. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/authentication.md +0 -0
  9. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/custom-logic.md +0 -0
  10. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/customization.md +0 -0
  11. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/examples.md +0 -0
  12. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/features.md +0 -0
  13. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/framework-notes.md +0 -0
  14. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/integration.md +0 -0
  15. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/logo.svg +0 -0
  16. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/logo1.svg +0 -0
  17. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/docs/relations.md +0 -0
  18. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/examples/fastapi_example.py +0 -0
  19. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/examples/flask_example.py +0 -0
  20. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/__init__.py +0 -0
  21. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/adapters/__init__.py +0 -0
  22. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/adapters/base.py +0 -0
  23. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/adapters/django.py +0 -0
  24. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/adapters/fastapi.py +0 -0
  25. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/adapters/flask.py +0 -0
  26. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/core/__init__.py +0 -0
  27. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/core/custom_routes.py +0 -0
  28. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/core/pluralize.py +0 -0
  29. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/core/relations.py +0 -0
  30. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/core/response.py +0 -0
  31. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/core/schema.py +0 -0
  32. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/django.py +0 -0
  33. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/docs/__init__.py +0 -0
  34. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/docs/openapi.py +0 -0
  35. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/fastapi.py +0 -0
  36. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/features/__init__.py +0 -0
  37. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/features/filtering.py +0 -0
  38. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/features/pagination.py +0 -0
  39. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/features/search.py +0 -0
  40. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/features/sorting.py +0 -0
  41. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/flask.py +0 -0
  42. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/inspectors/__init__.py +0 -0
  43. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/inspectors/base.py +0 -0
  44. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/inspectors/dataclass.py +0 -0
  45. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/inspectors/detect.py +0 -0
  46. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/inspectors/django.py +0 -0
  47. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/inspectors/pydantic.py +0 -0
  48. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/inspectors/sqlalchemy.py +0 -0
  49. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/py.typed +0 -0
  50. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/storage/__init__.py +0 -0
  51. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/storage/auto.py +0 -0
  52. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/storage/base.py +0 -0
  53. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/storage/orm.py +0 -0
  54. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/src/flashapi/storage/sqlalchemy.py +0 -0
  55. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/__init__.py +0 -0
  56. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_adapters/__init__.py +0 -0
  57. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_adapters/test_fastapi.py +0 -0
  58. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_adapters/test_flask.py +0 -0
  59. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_adapters/test_relations.py +0 -0
  60. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_core/__init__.py +0 -0
  61. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_core/test_pluralize.py +0 -0
  62. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_core/test_response.py +0 -0
  63. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_core/test_schema.py +0 -0
  64. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_features/__init__.py +0 -0
  65. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_features/test_filtering.py +0 -0
  66. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_features/test_pagination.py +0 -0
  67. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_features/test_search.py +0 -0
  68. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_features/test_sorting.py +0 -0
  69. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_inspectors/__init__.py +0 -0
  70. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_inspectors/test_dataclass.py +0 -0
  71. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_inspectors/test_detect.py +0 -0
  72. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_inspectors/test_pydantic.py +0 -0
  73. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_storage/__init__.py +0 -0
  74. {python_flashapi-0.1.0 → python_flashapi-0.1.2}/tests/test_storage/test_auto.py +0 -0
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-flashapi
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Define your models. FlashAPI does the rest.
5
- Project-URL: Homepage, https://github.com/flashapi/flashapi
6
- Project-URL: Documentation, https://flashapi.dev
7
- Project-URL: Repository, https://github.com/flashapi/flashapi
5
+ Project-URL: Homepage, https://github.com/HackermanMe/flashapi
6
+ Project-URL: Documentation, https://github.com/HackermanMe/flashapi#readme
7
+ Project-URL: Repository, https://github.com/HackermanMe/flashapi
8
8
  Author: FlashAPI Contributors
9
9
  License-Expression: MIT
10
10
  License-File: LICENSE
@@ -40,7 +40,7 @@ Requires-Dist: flask>=2.3.0; extra == 'flask'
40
40
  Description-Content-Type: text/markdown
41
41
 
42
42
  <p align="center">
43
- <img src="docs/logo.svg" alt="FlashAPI" width="400">
43
+ <img src="https://raw.githubusercontent.com/HackermanMe/flashapi/main/docs/logo.svg" alt="FlashAPI" width="400">
44
44
  </p>
45
45
 
46
46
  <p align="center">
@@ -48,10 +48,10 @@ Description-Content-Type: text/markdown
48
48
  </p>
49
49
 
50
50
  <p align="center">
51
- <a href="https://pypi.org/project/flashapi/"><img src="https://img.shields.io/pypi/v/flashapi?color=blue" alt="PyPI version"></a>
52
- <a href="https://github.com/flashapi/flashapi/actions/workflows/ci.yml"><img src="https://github.com/flashapi/flashapi/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
53
- <a href="https://pypi.org/project/flashapi/"><img src="https://img.shields.io/pypi/pyversions/flashapi" alt="Python versions"></a>
54
- <a href="https://github.com/flashapi/flashapi/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="License"></a>
51
+ <a href="https://pypi.org/project/python-flashapi/"><img src="https://img.shields.io/pypi/v/python-flashapi?color=blue" alt="PyPI version"></a>
52
+ <a href="https://github.com/HackermanMe/flashapi/actions/workflows/ci.yml"><img src="https://github.com/HackermanMe/flashapi/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
53
+ <a href="https://pypi.org/project/python-flashapi/"><img src="https://img.shields.io/pypi/pyversions/python-flashapi" alt="Python versions"></a>
54
+ <a href="https://github.com/HackermanMe/flashapi/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="License"></a>
55
55
  </p>
56
56
 
57
57
  <p align="center">
@@ -85,7 +85,7 @@ FlashAPI generates a full REST API with CRUD, pagination, filtering, sorting, fu
85
85
  ## Installation
86
86
 
87
87
  ```bash
88
- pip install flashapi[fastapi] # or flashapi[django] or flashapi[flask] or flashapi[all]
88
+ pip install python-flashapi[fastapi] # or python-flashapi[django] or python-flashapi[flask] or python-flashapi[all]
89
89
  ```
90
90
 
91
91
  ---
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="docs/logo.svg" alt="FlashAPI" width="400">
2
+ <img src="https://raw.githubusercontent.com/HackermanMe/flashapi/main/docs/logo.svg" alt="FlashAPI" width="400">
3
3
  </p>
4
4
 
5
5
  <p align="center">
@@ -7,10 +7,10 @@
7
7
  </p>
8
8
 
9
9
  <p align="center">
10
- <a href="https://pypi.org/project/flashapi/"><img src="https://img.shields.io/pypi/v/flashapi?color=blue" alt="PyPI version"></a>
11
- <a href="https://github.com/flashapi/flashapi/actions/workflows/ci.yml"><img src="https://github.com/flashapi/flashapi/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
12
- <a href="https://pypi.org/project/flashapi/"><img src="https://img.shields.io/pypi/pyversions/flashapi" alt="Python versions"></a>
13
- <a href="https://github.com/flashapi/flashapi/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="License"></a>
10
+ <a href="https://pypi.org/project/python-flashapi/"><img src="https://img.shields.io/pypi/v/python-flashapi?color=blue" alt="PyPI version"></a>
11
+ <a href="https://github.com/HackermanMe/flashapi/actions/workflows/ci.yml"><img src="https://github.com/HackermanMe/flashapi/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
12
+ <a href="https://pypi.org/project/python-flashapi/"><img src="https://img.shields.io/pypi/pyversions/python-flashapi" alt="Python versions"></a>
13
+ <a href="https://github.com/HackermanMe/flashapi/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="License"></a>
14
14
  </p>
15
15
 
16
16
  <p align="center">
@@ -44,7 +44,7 @@ FlashAPI generates a full REST API with CRUD, pagination, filtering, sorting, fu
44
44
  ## Installation
45
45
 
46
46
  ```bash
47
- pip install flashapi[fastapi] # or flashapi[django] or flashapi[flask] or flashapi[all]
47
+ pip install python-flashapi[fastapi] # or python-flashapi[django] or python-flashapi[flask] or python-flashapi[all]
48
48
  ```
49
49
 
50
50
  ---
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "python-flashapi"
7
- version = "0.1.0"
7
+ version = "0.1.2"
8
8
  description = "Define your models. FlashAPI does the rest."
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -33,9 +33,9 @@ all = ["fastapi>=0.100.0", "uvicorn>=0.20.0", "django>=4.2", "flask>=2.3.0"]
33
33
  dev = ["pytest>=7.0", "pytest-asyncio", "httpx", "ruff"]
34
34
 
35
35
  [project.urls]
36
- Homepage = "https://github.com/flashapi/flashapi"
37
- Documentation = "https://flashapi.dev"
38
- Repository = "https://github.com/flashapi/flashapi"
36
+ Homepage = "https://github.com/HackermanMe/flashapi"
37
+ Documentation = "https://github.com/HackermanMe/flashapi#readme"
38
+ Repository = "https://github.com/HackermanMe/flashapi"
39
39
 
40
40
  [tool.hatch.build.targets.wheel]
41
41
  packages = ["src/flashapi"]
File without changes