frost-sta-client 1.1.49__tar.gz → 1.1.51__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/PKG-INFO +1 -1
  2. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/__version__.py +1 -1
  3. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/actuator.py +1 -1
  4. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/datastream.py +338 -338
  5. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/ext/data_array_document.py +67 -68
  6. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/ext/entity_list.py +169 -162
  7. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/feature_of_interest.py +1 -1
  8. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/historical_location.py +1 -1
  9. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/location.py +2 -2
  10. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/multi_datastream.py +345 -345
  11. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/observedproperty.py +210 -210
  12. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/task.py +3 -3
  13. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/tasking_capability.py +2 -2
  14. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client.egg-info/PKG-INFO +1 -1
  15. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client.egg-info/SOURCES.txt +10 -1
  16. frost_sta_client-1.1.51/tests/test_dao_base.py +71 -0
  17. frost_sta_client-1.1.51/tests/test_entity_behaviour.py +21 -0
  18. frost_sta_client-1.1.51/tests/test_entity_list.py +50 -0
  19. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/tests/test_entity_reader.py +266 -267
  20. frost_sta_client-1.1.51/tests/test_ext_data_array.py +20 -0
  21. frost_sta_client-1.1.51/tests/test_ext_entity_type.py +7 -0
  22. frost_sta_client-1.1.51/tests/test_integration.py +125 -0
  23. frost_sta_client-1.1.51/tests/test_query_unit.py +42 -0
  24. frost_sta_client-1.1.51/tests/test_service_unit.py +58 -0
  25. frost_sta_client-1.1.51/tests/test_utils_more.py +33 -0
  26. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/LICENSE +0 -0
  27. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/README.md +0 -0
  28. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/__init__.py +0 -0
  29. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/__init__.py +0 -0
  30. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/actuator.py +0 -0
  31. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/base.py +0 -0
  32. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/datastream.py +0 -0
  33. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/features_of_interest.py +0 -0
  34. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/historical_location.py +0 -0
  35. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/location.py +0 -0
  36. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/multi_datastream.py +0 -0
  37. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/observation.py +0 -0
  38. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/observedproperty.py +0 -0
  39. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/sensor.py +0 -0
  40. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/task.py +0 -0
  41. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/tasking_capability.py +0 -0
  42. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/dao/thing.py +0 -0
  43. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/__init__.py +0 -0
  44. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/entity.py +0 -0
  45. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/ext/__init__.py +0 -0
  46. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/ext/data_array_value.py +0 -0
  47. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/ext/entity_type.py +0 -0
  48. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/ext/unitofmeasurement.py +0 -0
  49. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/observation.py +0 -0
  50. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/sensor.py +0 -0
  51. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/model/thing.py +0 -0
  52. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/query/__init__.py +0 -0
  53. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/query/query.py +0 -0
  54. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/service/__init__.py +0 -0
  55. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/service/auth_handler.py +0 -0
  56. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/service/sensorthingsservice.py +0 -0
  57. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client/utils.py +0 -0
  58. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client.egg-info/dependency_links.txt +0 -0
  59. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client.egg-info/requires.txt +0 -0
  60. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/frost_sta_client.egg-info/top_level.txt +0 -0
  61. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/setup.cfg +0 -0
  62. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/setup.py +0 -0
  63. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/tests/test_entity_formatter.py +0 -0
  64. {frost_sta_client-1.1.49 → frost_sta_client-1.1.51}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: frost_sta_client
3
- Version: 1.1.49
3
+ Version: 1.1.51
4
4
  Summary: a client library to facilitate interaction with a FROST SensorThingsAPI Server
5
5
  Home-page: https://github.com/FraunhoferIOSB/FROST-Python-Client
6
6
  Author: Fraunhofer IOSB
@@ -1,5 +1,5 @@
1
1
  __title__ = 'frost_sta_client'
2
- __version__ = '1.1.49'
2
+ __version__ = '1.1.51'
3
3
  __license__ = 'LGPL3'
4
4
  __author__ = 'Fraunhofer IOSB'
5
5
  __copyright__ = 'Fraunhofer IOSB'
@@ -165,7 +165,7 @@ class Actuator(entity.Entity):
165
165
  if self.properties is not None and self.properties != {}:
166
166
  data['properties'] = self.properties
167
167
  if self.tasking_capabilities is not None and len(self.tasking_capabilities.entities) > 0:
168
- data['taskingCapabilities'] = self.tasking_capabilities.__getstate__()
168
+ data['TaskingCapabilities'] = self.tasking_capabilities.__getstate__()
169
169
  return data
170
170
 
171
171
  def __setstate__(self, state):