Client side SDK
No due date
0% complete
Add some syntactic sugar to the cloudcompchem
package to allow people to access the API from standard python functions/classes.
class Energy:
def __init__(molecule: Molecule):
...
def calculate(self):
# send http request to server using the energy class structure as input
# OR
def calculate_energy(molecule: Molecule) -> Energy:
# s…
Add some syntactic sugar to the cloudcompchem
package to allow people to access the API from standard python functions/classes.
class Energy:
def __init__(molecule: Molecule):
...
def calculate(self):
# send http request to server using the energy class structure as input
# OR
def calculate_energy(molecule: Molecule) -> Energy:
# send http request blah blah