
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
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.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.