Browse Source

bug fix: identifier filter

Steve Nyemba 2 years ago
parent
commit
7200be7beb
2 changed files with 3 additions and 1 deletions
  1. 2 0
      bin/transport
  2. 1 1
      setup.py

+ 2 - 0
bin/transport

@@ -65,6 +65,8 @@ if __name__ == '__main__' :
 				_index = int(SYS_ARGS['index'])
 				_info = [_item for _item in _info if _info.index(_item) == _index]
 				pass
+			elif 'id' in SYS_ARGS :
+				_info = [_item for _item in _info if 'id' in _item and _item['id'] == SYS_ARGS['id']]
 			
 			procs = 1 if 'procs' not in SYS_ARGS else int(SYS_ARGS['procs'])
 			jobs = transport.factory.instance(provider='etl',info=_info,procs=procs)

+ 1 - 1
setup.py

@@ -8,7 +8,7 @@ def read(fname):
     return open(os.path.join(os.path.dirname(__file__), fname)).read() 
 args    = {
     "name":"data-transport",
-    "version":"1.6.8",
+    "version":"1.7.0",
     "author":"The Phi Technology LLC","author_email":"info@the-phi.com",
     "license":"MIT",
     "packages":["transport"]}