We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c012a3f commit 79a6047Copy full SHA for 79a6047
rpcproxy.py
@@ -1,13 +1,19 @@
1
#!/usr/bin/env python3
2
3
+# Build with cython:
4
+#
5
+# cython rpcproxy.py --embed
6
+# gcc -O3 -I /usr/include/python3.5m -o rpcproxy rpcproxy.c \
7
+# -Wl,-Bstatic -lpython3.5m -lz -lexpat -lutil -Wl,-Bdynamic -lpthread -ldl -lm
8
+
9
from argparse import ArgumentParser
10
from http.server import HTTPServer, BaseHTTPRequestHandler
11
from os import path
12
from urllib.parse import urlparse
13
import socket
14
15
-VERSION = '0.0.0'
16
+VERSION = '0.1.0a1'
17
BUFSIZE = 32
18
DELIMITER = ord('\n')
19
INFO = """JSON-RPC Proxy
0 commit comments