__init__.py 883 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. Modbus TestKit: Implementation of Modbus protocol in python
  5. (C)2009 - Luc Jean - luc.jean@gmail.com
  6. (C)2009 - Apidev - http://www.apidev.fr
  7. This is distributed under GNU LGPL license, see license.txt
  8. Make possible to write modbus TCP and RTU master and slave for testing purpose
  9. Modbus TestKit is different from pymodbus which is another implementation of
  10. the modbus stack in python
  11. contributors:
  12. ----------------------------------
  13. * OrangeTux
  14. * denisstogl
  15. * MELabs
  16. * idahogray
  17. * riaan.doorduin
  18. * tor.sjowall
  19. * smachin1000
  20. * GadgetSteve
  21. * dhoomakethu
  22. * zerox1212
  23. * ffreckle
  24. * Matthew West
  25. * Vincent Prince
  26. * kcl93
  27. * https://github.com/Slasktra
  28. * travijuu
  29. Please let us know if your name is missing!
  30. """
  31. VERSION = '1.1.0'
  32. import logging
  33. LOGGER = logging.getLogger("modbus_tk")