HydroShare has a Python API for adding metadata information to a resource about any or all authors who have contributed to the resource. Metadata helps the viewer to know more about the authors of the resource.
To try this on your own, you can use the code snippet below that is used in this demonstration.
from hs_restclient import HydroShare, HydroShareAuthBasic
auth = HydroShareAuthBasic(username='myusername', password='mypassword')
hs = HydroShare(auth=auth)
metadata = {
"title": "A new title for my resource",
"coverages": [
{"type": "period", "value": {"start": "01/01/2000", "end": "12/12/2010"}}
],
"creators": [
{"name": "John Smith", "organization": "USU"},
{"name": "Lisa Miller", "email": "lisa_miller@gmail.com"}
]
}
science_metadata_json = hs.updateScienceMetadata('ID OF RESOURCE GOES HERE', metadata=metadata)