aboutsummaryrefslogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/test.py b/test.py
new file mode 100755
index 0000000..f6c4de1
--- /dev/null
+++ b/test.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+
+import sys
+import optparse
+import logging
+import socket
+
+import bjsonrpc
+import bjsonrpc.connection
+import augeas
+
+# =============================================================================
+# Command line handling
+def main():
+
+ socket_path="/tmp/exmachina.sock"
+ sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
+ sock.connect(socket_path)
+
+ c = bjsonrpc.connection.Connection(sock)
+ print c.call.whattime()
+ print c.call.listfiles()
+
+if __name__ == '__main__':
+ main()