Utkarsh Chhapekar

Results 4 comments of Utkarsh Chhapekar

In the source code for your sutime i.e. sutime.py, you have to change the versions of the jar files used. So you have to take care of these two files:...

Aaah yes in your source sutime.py the last few lines of code are this: return json.loads(self._sutime.annotate(input_str, reference_date)) return json.loads(self._sutime.annotate(input_str)) Change it to: return json.loads(str(self._sutime.annotate(input_str, reference_date))) return json.loads(str(self._sutime.annotate(input_str))) The Java wrapper...

Yeah for some reason the sutime.py file in the repo and the one after doing pip install don't match even though they are the same version. The code in the...