Create readme.md
This commit is contained in:
parent
7c5398e6e1
commit
78e338b5de
1 changed files with 20 additions and 0 deletions
20
cocalc/readme.md
Normal file
20
cocalc/readme.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
### Example: `cocalc` <a name="example-cocalc"></a>
|
||||
|
||||
|
||||
```python
|
||||
# import library
|
||||
import cocalc
|
||||
|
||||
cocalc.Completion.create(prompt="How are you!", cookieInput="cookieinput") ## Tutorial
|
||||
```
|
||||
|
||||
### How to grab cookie input
|
||||
```js
|
||||
# input this into ur developer tools console and the exact response u get from this u put into ur cookieInput!
|
||||
var cookies = document.cookie.split("; ");
|
||||
var cookieString = "";
|
||||
for (var i = 0; i < cookies.length; i++) {
|
||||
cookieString += cookies[i] + "; ";
|
||||
}
|
||||
console.log(cookieString);
|
||||
```
|
Loading…
Reference in a new issue