
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
pasarguard-node-bridge
Advanced tools
Library to connect and use https://github.com/PasarGuard/node
pip install pasarguard-node-bridge
Library is fully async for both gRPC and REST API connection.
import PasarGuardNodeBridge as Bridge
# or
import PasarGuardNodeBridge as PGNB
node = Bridge.create_node(
connection=Bridge.NodeType.GRPC, # GRPC or REST
address=address, # Node ip address or domain
port=port,
client_cert=client_cert_content, # client side ssl certificate as string
client_key=client_key_content, # client side ssl key as string
server_ca=server_ca_content, # server side ssl key as string
extra={}, # a dictionary to hold node data on production, optional, default: None
)
If you need to have access proto structure you can use:
from PasarGuardNodeBridge.common import service_pb2 as service
user = Bridge.create_user(
email="jeff",
proxies=Bridge.create_proxy(
vmess_id="0d59268a-9847-4218-ae09-65308eb52e08", # UUID converted to str
vless_id="0d59268a-9847-4218-ae09-65308eb52e08", # UUID converted to str
vless_flow="", # Valid vless flow if is set for user (str)
trojan_password="", # Trojan password (str)
shadowsocks_password="", # Shadowsocks password (str)
shadowsocks_method="", # Valid shadowsocks method supported by backend
),
inbounds=[] # List of outbound tag, List[str]
)
Before use any method you need to call start method and connect to node unless you will face NodeAPIError for every method
await node.start(
config=config, # backend config as string
backend_type=0, # backend type , XRAY = 0
users=[], # list of users you want to add to this node, will be recheck in node with config
timeout=20,
)
stats = await node.get_user_stats(
email="noreply@donate.pasarguard.org",
reset=True,
timeout=10,
)
Return a Bridge.Health
health = await node.get_health()
Return a asyncio.Queue[str]
logs = await node.get_logs()
FAQs
python package to connect your project with PasarGuard node go
We found that pasarguard-node-bridge 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.