Analyze your network traffic with ease
Project description
Network Analyzer
Installation
Clone the repository and go to its root folder and run:
sudo pip install -e .
Run Server
Using PM2
To run JSON-RPC server over HTTP as well as Websocket:
pm2 start pm2.json
Using shell script
To run JSON-RPC server over http on port 5000:
sh scripts/serve_rpc.sh
To run RPC server over web socket (socket.io) on port 5050:
sh scripts/serve_socket.sh
Client
Python (2.7)
- Install JSON-RPC client
tinyrpc
by running:
sudo pip install tinyrpc
- Sample Python 2.7 client code to access JSON-RPC API
from tinyrpc.protocols.jsonrpc import JSONRPCProtocol
from tinyrpc.transports.http import HttpPostClientTransport
from tinyrpc import RPCClient
rpc_client = RPCClient(
JSONRPCProtocol(),
HttpPostClientTransport('http://localhost:5000/v1/jsonrpc')
)
rpc_server = rpc_client.get_proxy()
print "pinging..."
pong = rpc_server.ping()
print "ping response: " + pong
resp = rpc_server.hello("John")
print "hello world response: " + resp
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
network-analyzer-0.0.2.5.tar.gz
(10.6 kB
view hashes)
Built Distribution
Close
Hashes for network_analyzer-0.0.2.5-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c455aee847b7cfca4addae7f9e4027630e3698a22032422bbc6f083f84ebf96 |
|
MD5 | 054c5354f87a0edd41f9f982a75a196c |
|
BLAKE2b-256 | f2530df0921f62ff24b79c7bfe77bd8defeb94a7b9adc96247dcb1c2159a084c |