This is the simplest module for quick get project endpoints
Project description
Endmapper
Endmapper is a library for mapping endpoints.
Installation
pip install endmapper
Config file "cmapcfg.json"
{
//This keywords must be in path
"path_white_list": [],
//This keywords could not be in path
"path_black_list": [],
//This keywords must be in endpoint name
"name_white_list": [],
//This keywords could not be in endpoint name
"name_black_list": [],
//Services use with proxy endpoints
//Service what you want to connect must use endmapper too
"services": {
"endpoint_name": "hostname or ip"
}
//You can use fields from .env
"services": {
"endpoint_name": "${ENV_FIELD}"
}
//Use debug mode is you need
"debug": true,
}
How to use with django/drf
- add new path to main project urls
from django.urls import path, include
urlpatterns = [
# another paths
path('', include('endmapper.urls'))
]
WARNING: all paths what you want to add to endmapper must have "name"
How to use with fastAPI
from fastapi import FastAPI
from endmapper.mappers.fastapi_mapper import connect_app
from lib_1 import some_router_1
from lib_2 import some_router_2
app = FastAPI()
app.include_router(some_router_1)
app.include_router(some_router_2)
connect_app(app)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
endmapper-0.5.4.tar.gz
(5.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file endmapper-0.5.4.tar.gz.
File metadata
- Download URL: endmapper-0.5.4.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8c12135804d28b53ceba7329e2f4eedf3bece3816f3ace2f2ebc39dd4327435
|
|
| MD5 |
f3e56844802ffa7650552ebc948673cc
|
|
| BLAKE2b-256 |
9fc934b1cc514b5787aa2555983253b8118b4ef498eed77e150160cbccbfe3dd
|
File details
Details for the file endmapper-0.5.4-py3-none-any.whl.
File metadata
- Download URL: endmapper-0.5.4-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0854550910f03bd5eb42b56c7864d471652f5c524eeb74aedcc816e513a7d261
|
|
| MD5 |
c842b9867909b6008bdc87812595f509
|
|
| BLAKE2b-256 |
cc3120b7138a56368ea1f6c4bd1d6fceb40ab0a39898db021bc8a55fc1645353
|