__init__.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # Copyright 2019 The FATE Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. from flow_sdk.client.base import BaseFlowClient
  17. from flow_sdk.client import api
  18. class FlowClient(BaseFlowClient):
  19. job = api.Job()
  20. component = api.Component()
  21. data = api.Data()
  22. queue = api.Queue()
  23. table = api.Table()
  24. task = api.Task()
  25. model = api.Model()
  26. tag = api.Tag()
  27. privilege = api.Privilege()
  28. checkpoint = api.Checkpoint()
  29. remote_version = api.Version()
  30. test = api.Test()
  31. def __init__(self, ip, port, version, app_key=None, secret_key=None):
  32. super().__init__(ip, port, version, app_key, secret_key)
  33. self.API_BASE_URL = 'http://%s:%s/%s/' % (ip, port, version)