fastapi-radar 0.1.3__tar.gz → 0.1.4__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.
Potentially problematic release.
This version of fastapi-radar might be problematic. Click here for more details.
- {fastapi_radar-0.1.3/fastapi_radar.egg-info → fastapi_radar-0.1.4}/PKG-INFO +11 -13
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/README.md +9 -10
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/__init__.py +1 -1
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/radar.py +0 -1
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4/fastapi_radar.egg-info}/PKG-INFO +11 -13
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar.egg-info/requires.txt +1 -2
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/pyproject.toml +2 -3
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/setup.py +1 -1
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/CONTRIBUTING.md +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/LICENSE +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/MANIFEST.in +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/api.py +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/capture.py +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/dashboard/dist/assets/index-CxIRSjZZ.js +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/dashboard/dist/assets/index-DCxkDBhr.css +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/dashboard/dist/index.html +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/middleware.py +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/models.py +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/utils.py +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar.egg-info/SOURCES.txt +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar.egg-info/dependency_links.txt +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar.egg-info/not-zip-safe +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar.egg-info/top_level.txt +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/setup.cfg +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/tests/__init__.py +0 -0
- {fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/tests/test_radar.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-radar
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: A debugging dashboard for FastAPI applications with real-time monitoring
|
|
5
5
|
Home-page: https://github.com/doganarif/fastapi-radar
|
|
6
6
|
Author: Arif Dogan
|
|
@@ -28,8 +28,6 @@ Requires-Dist: fastapi>=0.68.0
|
|
|
28
28
|
Requires-Dist: sqlalchemy>=1.4.0
|
|
29
29
|
Requires-Dist: pydantic>=1.8.0
|
|
30
30
|
Requires-Dist: starlette>=0.14.2
|
|
31
|
-
Requires-Dist: black>=24.8.0
|
|
32
|
-
Requires-Dist: httpx>=0.28.1
|
|
33
31
|
Provides-Extra: dev
|
|
34
32
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
35
33
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
@@ -38,21 +36,22 @@ Requires-Dist: black>=22.0.0; extra == "dev"
|
|
|
38
36
|
Requires-Dist: isort>=5.10.0; extra == "dev"
|
|
39
37
|
Requires-Dist: flake8>=4.0.0; extra == "dev"
|
|
40
38
|
Requires-Dist: mypy>=0.950; extra == "dev"
|
|
39
|
+
Requires-Dist: httpx>=0.28.1; extra == "dev"
|
|
41
40
|
Dynamic: author
|
|
42
41
|
Dynamic: home-page
|
|
43
42
|
Dynamic: license-file
|
|
44
43
|
Dynamic: requires-python
|
|
45
44
|
|
|
46
|
-
# FastAPI Radar
|
|
45
|
+
# FastAPI Radar
|
|
47
46
|
|
|
48
47
|
[](https://www.python.org/downloads/)
|
|
49
48
|
[](https://opensource.org/licenses/MIT)
|
|
50
49
|
|
|
51
50
|
**A debugging dashboard for FastAPI applications providing real-time request, database query, and exception monitoring.**
|
|
52
51
|
|
|
53
|
-
|
|
52
|
+
**Just one line to add powerful monitoring to your FastAPI app!**
|
|
54
53
|
|
|
55
|
-
##
|
|
54
|
+
## See it in Action
|
|
56
55
|
|
|
57
56
|

|
|
58
57
|
|
|
@@ -84,7 +83,7 @@ from sqlalchemy import create_engine
|
|
|
84
83
|
app = FastAPI()
|
|
85
84
|
engine = create_engine("sqlite:///./app.db")
|
|
86
85
|
|
|
87
|
-
# That's it! One line to add complete monitoring
|
|
86
|
+
# That's it! One line to add complete monitoring
|
|
88
87
|
radar = Radar(app, db_engine=engine)
|
|
89
88
|
radar.create_tables()
|
|
90
89
|
|
|
@@ -98,12 +97,11 @@ Access your dashboard at: **http://localhost:8000/\_\_radar/**
|
|
|
98
97
|
|
|
99
98
|
## Features
|
|
100
99
|
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
- 🎨 **Beautiful UI** - Modern React dashboard with shadcn/ui components
|
|
100
|
+
- **Zero Configuration** - Works with any FastAPI + SQLAlchemy app
|
|
101
|
+
- **Request Monitoring** - Complete HTTP request/response capture with timing
|
|
102
|
+
- **Database Monitoring** - SQL query logging with execution times
|
|
103
|
+
- **Exception Tracking** - Automatic exception capture with stack traces
|
|
104
|
+
- **Real-time Updates** - Live dashboard updates as requests happen
|
|
107
105
|
|
|
108
106
|
## Configuration
|
|
109
107
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
# FastAPI Radar
|
|
1
|
+
# FastAPI Radar
|
|
2
2
|
|
|
3
3
|
[](https://www.python.org/downloads/)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
6
|
**A debugging dashboard for FastAPI applications providing real-time request, database query, and exception monitoring.**
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
**Just one line to add powerful monitoring to your FastAPI app!**
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## See it in Action
|
|
11
11
|
|
|
12
12
|

|
|
13
13
|
|
|
@@ -39,7 +39,7 @@ from sqlalchemy import create_engine
|
|
|
39
39
|
app = FastAPI()
|
|
40
40
|
engine = create_engine("sqlite:///./app.db")
|
|
41
41
|
|
|
42
|
-
# That's it! One line to add complete monitoring
|
|
42
|
+
# That's it! One line to add complete monitoring
|
|
43
43
|
radar = Radar(app, db_engine=engine)
|
|
44
44
|
radar.create_tables()
|
|
45
45
|
|
|
@@ -53,12 +53,11 @@ Access your dashboard at: **http://localhost:8000/\_\_radar/**
|
|
|
53
53
|
|
|
54
54
|
## Features
|
|
55
55
|
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
- 🎨 **Beautiful UI** - Modern React dashboard with shadcn/ui components
|
|
56
|
+
- **Zero Configuration** - Works with any FastAPI + SQLAlchemy app
|
|
57
|
+
- **Request Monitoring** - Complete HTTP request/response capture with timing
|
|
58
|
+
- **Database Monitoring** - SQL query logging with execution times
|
|
59
|
+
- **Exception Tracking** - Automatic exception capture with stack traces
|
|
60
|
+
- **Real-time Updates** - Live dashboard updates as requests happen
|
|
62
61
|
|
|
63
62
|
## Configuration
|
|
64
63
|
|
|
@@ -120,7 +120,6 @@ class Radar:
|
|
|
120
120
|
|
|
121
121
|
# Add a catch-all route for the dashboard SPA
|
|
122
122
|
# This ensures all sub-routes under /__radar serve the index.html
|
|
123
|
-
@self.app.get(f"{self.dashboard_path}")
|
|
124
123
|
@self.app.get(f"{self.dashboard_path}/{{full_path:path}}")
|
|
125
124
|
async def serve_dashboard(request: Request, full_path: str = ""):
|
|
126
125
|
# Check if it's a request for a static asset
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-radar
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: A debugging dashboard for FastAPI applications with real-time monitoring
|
|
5
5
|
Home-page: https://github.com/doganarif/fastapi-radar
|
|
6
6
|
Author: Arif Dogan
|
|
@@ -28,8 +28,6 @@ Requires-Dist: fastapi>=0.68.0
|
|
|
28
28
|
Requires-Dist: sqlalchemy>=1.4.0
|
|
29
29
|
Requires-Dist: pydantic>=1.8.0
|
|
30
30
|
Requires-Dist: starlette>=0.14.2
|
|
31
|
-
Requires-Dist: black>=24.8.0
|
|
32
|
-
Requires-Dist: httpx>=0.28.1
|
|
33
31
|
Provides-Extra: dev
|
|
34
32
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
35
33
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
@@ -38,21 +36,22 @@ Requires-Dist: black>=22.0.0; extra == "dev"
|
|
|
38
36
|
Requires-Dist: isort>=5.10.0; extra == "dev"
|
|
39
37
|
Requires-Dist: flake8>=4.0.0; extra == "dev"
|
|
40
38
|
Requires-Dist: mypy>=0.950; extra == "dev"
|
|
39
|
+
Requires-Dist: httpx>=0.28.1; extra == "dev"
|
|
41
40
|
Dynamic: author
|
|
42
41
|
Dynamic: home-page
|
|
43
42
|
Dynamic: license-file
|
|
44
43
|
Dynamic: requires-python
|
|
45
44
|
|
|
46
|
-
# FastAPI Radar
|
|
45
|
+
# FastAPI Radar
|
|
47
46
|
|
|
48
47
|
[](https://www.python.org/downloads/)
|
|
49
48
|
[](https://opensource.org/licenses/MIT)
|
|
50
49
|
|
|
51
50
|
**A debugging dashboard for FastAPI applications providing real-time request, database query, and exception monitoring.**
|
|
52
51
|
|
|
53
|
-
|
|
52
|
+
**Just one line to add powerful monitoring to your FastAPI app!**
|
|
54
53
|
|
|
55
|
-
##
|
|
54
|
+
## See it in Action
|
|
56
55
|
|
|
57
56
|

|
|
58
57
|
|
|
@@ -84,7 +83,7 @@ from sqlalchemy import create_engine
|
|
|
84
83
|
app = FastAPI()
|
|
85
84
|
engine = create_engine("sqlite:///./app.db")
|
|
86
85
|
|
|
87
|
-
# That's it! One line to add complete monitoring
|
|
86
|
+
# That's it! One line to add complete monitoring
|
|
88
87
|
radar = Radar(app, db_engine=engine)
|
|
89
88
|
radar.create_tables()
|
|
90
89
|
|
|
@@ -98,12 +97,11 @@ Access your dashboard at: **http://localhost:8000/\_\_radar/**
|
|
|
98
97
|
|
|
99
98
|
## Features
|
|
100
99
|
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
- 🎨 **Beautiful UI** - Modern React dashboard with shadcn/ui components
|
|
100
|
+
- **Zero Configuration** - Works with any FastAPI + SQLAlchemy app
|
|
101
|
+
- **Request Monitoring** - Complete HTTP request/response capture with timing
|
|
102
|
+
- **Database Monitoring** - SQL query logging with execution times
|
|
103
|
+
- **Exception Tracking** - Automatic exception capture with stack traces
|
|
104
|
+
- **Real-time Updates** - Live dashboard updates as requests happen
|
|
107
105
|
|
|
108
106
|
## Configuration
|
|
109
107
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "fastapi-radar"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "A debugging dashboard for FastAPI applications with real-time monitoring"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.8"
|
|
@@ -31,8 +31,6 @@ dependencies = [
|
|
|
31
31
|
"sqlalchemy>=1.4.0",
|
|
32
32
|
"pydantic>=1.8.0",
|
|
33
33
|
"starlette>=0.14.2",
|
|
34
|
-
"black>=24.8.0",
|
|
35
|
-
"httpx>=0.28.1",
|
|
36
34
|
]
|
|
37
35
|
|
|
38
36
|
[project.urls]
|
|
@@ -49,6 +47,7 @@ dev = [
|
|
|
49
47
|
"isort>=5.10.0",
|
|
50
48
|
"flake8>=4.0.0",
|
|
51
49
|
"mypy>=0.950",
|
|
50
|
+
"httpx>=0.28.1",
|
|
52
51
|
]
|
|
53
52
|
|
|
54
53
|
[build-system]
|
|
@@ -9,7 +9,7 @@ long_description = (this_directory / "README.md").read_text()
|
|
|
9
9
|
|
|
10
10
|
setup(
|
|
11
11
|
name="fastapi-radar",
|
|
12
|
-
version="0.1.
|
|
12
|
+
version="0.1.4",
|
|
13
13
|
author="Arif Dogan",
|
|
14
14
|
author_email="me@arif.sh",
|
|
15
15
|
description="A debugging dashboard for FastAPI applications with real-time request, database query, and exception monitoring",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/dashboard/dist/assets/index-CxIRSjZZ.js
RENAMED
|
File without changes
|
{fastapi_radar-0.1.3 → fastapi_radar-0.1.4}/fastapi_radar/dashboard/dist/assets/index-DCxkDBhr.css
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
|