-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
I am getting a 404 when I am trying to list the templates
here is the error output
In [33]: civo=Civo("VALID_TOKEN", region="SVG1")
In [34]: civo.templates.search()
---------------------------------------------------------------------------
JSONDecodeError Traceback (most recent call last)
File /usr/lib/python3.10/site-packages/requests/models.py:910, in Response.json(self, **kwargs)
909 try:
--> 910 return complexjson.loads(self.text, **kwargs)
911 except JSONDecodeError as e:
912 # Catch JSON-related errors and raise as requests.JSONDecodeError
913 # This aliases json.JSONDecodeError and simplejson.JSONDecodeError
File /usr/lib/python3.10/json/__init__.py:346, in loads(s, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw)
343 if (cls is None and object_hook is None and
344 parse_int is None and parse_float is None and
345 parse_constant is None and object_pairs_hook is None and not kw):
--> 346 return _default_decoder.decode(s)
347 if cls is None:
File /usr/lib/python3.10/json/decoder.py:340, in JSONDecoder.decode(self, s, _w)
339 if end != len(s):
--> 340 raise JSONDecodeError("Extra data", s, end)
341 return obj
JSONDecodeError: Extra data: line 1 column 5 (char 4)
During handling of the above exception, another exception occurred:
JSONDecodeError Traceback (most recent call last)
Input In [34], in <cell line: 1>()
----> 1 civo.templates.search()
File ~/.local/lib/python3.10/site-packages/civo/templates.py:88, in Templates.search(self, filter)
85 data = r.json()
86 return filter_list(data=data, filter_by=filter)
---> 88 return r.json()
File /usr/lib/python3.10/site-packages/requests/models.py:917, in Response.json(self, **kwargs)
915 raise RequestsJSONDecodeError(e.message)
916 else:
--> 917 raise RequestsJSONDecodeError(e.msg, e.doc, e.pos)
JSONDecodeError: [Errno Extra data] 404 page not found
: 4if for example, I am trying to list my SSH keys it works properly
In [35]: civo=Civo("VALID_TOKEN", region="SVG1")
In [36]: civo.ssh.search()
Out[36]:
[{'id': '0b3f565e-755f-4514-ac96-92f90ca2f980',
'name': 'jstilia',
'fingerprint': 'SHA256:cMNof4c6cA/txrP2EeXZfkTA9YjF+vKB4MyGyCfYW6A'}]
In [37]:Metadata
Metadata
Assignees
Labels
No labels