
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Endmapper is a library for mapping endpoints.
pip install endmapper
{
//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,
}
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"
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)
FAQs
This is the simplest module for quick get project endpoints
We found that endmapper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.