We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99e1e61 commit bb31e83Copy full SHA for bb31e83
README.rst
@@ -82,6 +82,20 @@ at creation time, so that this value will be used by default.
82
client = Client(bucket="payments", collection="receipts", auth=auth)
83
84
85
+Getting server information
86
+--------------------------
87
+
88
+You can use the ``server_info`` methods to get the server information::
89
90
+.. code-block:: python
91
92
+ from kinto_client import Client
93
94
+ client = Client(server_url='http://localhost:8888/v1')
95
+ infos = client.server_info()
96
+ assert 'schema' in infos['capabilities'], "Server doesn't supports schema validation."
97
98
99
Handling buckets
100
----------------
101
0 commit comments