driplineorg / dripline-python

python implementation of project8/dripline
Apache License 2.0
3 stars 6 forks source link

Service doesn't handle specifiers like Endpoint does #162

Open nsoblath opened 4 months ago

nsoblath commented 4 months ago

Dripline-python adds a nice feature on top of the core endpoint behaviors: specifiers can be used to call function attributes and to get/set value attributes. However, dripline.Service doesn't have that feature because it directly wraps dl-cpp's dripline::service.

Users will reasonably expect dripline.Service to have the same extra features as dripline.Endpoint, so the ability to use specifiers in the same way should be implemented.