Skip to content

Commit ac18ce3

Browse files
committed
migrated the proxy types from 'proxy' to 'pyaccumulo.proxy'
1 parent 16b76fb commit ac18ce3

13 files changed

+15
-10
lines changed

examples/doc_search.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
from pyaccumulo import Accumulo, Mutation, Range
1818
from pyaccumulo.iterators import *
1919

20-
from proxy.ttypes import IteratorSetting, IteratorScope
20+
from pyaccumulo.proxy.ttypes import IteratorSetting, IteratorScope
2121
from util import hashcode
2222
import hashlib, re
23+
import settings
2324

2425
conn = Accumulo(host=settings.HOST, port=settings.PORT, user=settings.USER, password=settings.PASSWORD)
2526

examples/intersecting_iterator.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
from pyaccumulo import Accumulo, Mutation, Range
1818
from pyaccumulo.iterators import *
1919

20-
from proxy.ttypes import IteratorSetting, IteratorScope
20+
from pyaccumulo.proxy.ttypes import IteratorSetting, IteratorScope
2121
from util import hashcode
2222
import hashlib, re
23+
import settings
2324

2425
conn = Accumulo(host=settings.HOST, port=settings.PORT, user=settings.USER, password=settings.PASSWORD)
2526

@@ -56,4 +57,4 @@
5657
for doc in conn.batch_scan(table, scanranges=[Range(srow=uuid, erow=uuid) for uuid in uuids]):
5758
print doc
5859

59-
conn.close()
60+
conn.close()

examples/regex_search.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@
1717
from pyaccumulo import Accumulo, Mutation, Range
1818
from pyaccumulo.iterators import *
1919

20-
from proxy.ttypes import IteratorSetting, IteratorScope
20+
from pyaccumulo.proxy.ttypes import IteratorSetting, IteratorScope
2121
from util import hashcode
2222
import hashlib, re
2323

24+
import settings
2425
conn = Accumulo(host=settings.HOST, port=settings.PORT, user=settings.USER, password=settings.PASSWORD)
2526

2627
table = "regexes"

examples/simple.py

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# limitations under the License.
1616

1717
from pyaccumulo import Accumulo, Mutation, Range
18+
import settings
1819

1920
table = "pythontest"
2021

pyaccumulo/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
from thrift.transport import TTransport
2020
from thrift.protocol import TCompactProtocol
2121

22-
from proxy import AccumuloProxy
23-
from proxy.ttypes import ScanColumn, ColumnUpdate, ScanOptions, Key, BatchScanOptions, TimeType, WriterOptions, IteratorSetting
24-
import proxy.ttypes
22+
from pyaccumulo.proxy import AccumuloProxy
23+
from pyaccumulo.proxy.ttypes import ScanColumn, ColumnUpdate, ScanOptions, Key, BatchScanOptions, TimeType, WriterOptions, IteratorSetting
24+
import pyaccumulo.proxy.ttypes
2525

2626
from collections import namedtuple
2727
from pyaccumulo.iterators import BaseIterator

pyaccumulo/iterators/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
from proxy.ttypes import IteratorSetting, IteratorScope
17+
from pyaccumulo.proxy.ttypes import IteratorSetting, IteratorScope
1818

1919
class BaseIterator(object):
2020
"""docstring for BaseIterator"""
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

settings.py

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
1817
HOST = "localhost"
1918
PORT = 50096
2019
USER = 'root'

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ def run(self):
108108
url = 'https://github.com/accumulo/pyaccumulo',
109109
keywords = 'accumulo client db distributed thrift',
110110
packages = ['pyaccumulo',
111-
'pyaccumulo.iterators'],
111+
'pyaccumulo.iterators',
112+
'pyaccumulo.proxy'
113+
],
112114
install_requires = ['thrift'],
113115
py_modules=['ez_setup'],
114116
cmdclass={"doc": doc, "rpm": rpm},

0 commit comments

Comments
 (0)