Browse Source

new client py

git-svn-id: https://bucket.mit.edu/svn/nilm/nilmdb@10610 ddd99763-3ecb-0310-9145-efcb8ce7c51f
tags/bxinterval-last
Jim Paris 11 years ago
parent
commit
b766aef257
2 changed files with 16 additions and 1 deletions
  1. +1
    -1
      Makefile
  2. +15
    -0
      nilmdb/client.py

+ 1
- 1
Makefile View File

@@ -4,4 +4,4 @@ all:
clean::
find . -name '*pyc' | xargs rm -f
rm -f .coverage
rm -rf tests/testdb
rm -rf tests/*testdb*

+ 15
- 0
nilmdb/client.py View File

@@ -0,0 +1,15 @@
"""Client utilities for accessing NILM database via HTTP"""

from __future__ import absolute_import
import nilmdb
from nilmdb.printf import *

import time
import sys
import re
import os
import urlparse

class Client(object):
pass


Loading…
Cancel
Save