client.py 483 B

12345678910111213141516171819202122232425262728
  1. from email import header
  2. #!/usr/bin/env python
  3. # -*- encoding: utf-8 -*-
  4. '''
  5. @Contact : liuyuqi.gov@msn.cn
  6. @Time : 2022/10/30 19:48:21
  7. @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
  8. @Desc :
  9. '''
  10. class Client(object):
  11. '''客户端'''
  12. def __init__(self):
  13. pass
  14. def connect(self):
  15. '''连接server'''
  16. pass
  17. def search(self):
  18. '''搜索本地 server'''
  19. pass
  20. if __name__ == "__main__":
  21. pass