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 776a2c8 commit 9fd276eCopy full SHA for 9fd276e
docs/client.md
@@ -124,6 +124,23 @@ async def example():
124
await client.delete_app_file(app_id='application_id', path='/file.txt')
125
```
126
127
+---
128
+
129
+### Squarecloud Statistics
130
131
+you can get the squarecloud statistics using `Client.statistics()`
132
133
+```python
134
+import squarecloud as square
135
136
+client = square.Client(api_key='API KEY')
137
138
139
+async def example():
140
+ statistics = await client.statistics()
141
+ print(statistics) # StatisticsData(...)
142
+```
143
144
___
145
146
### Debug mode
0 commit comments