Skip to content

Commit 906abd8

Browse files
authored
docs: hide unfinished SDKs
1 parent 52a67c9 commit 906abd8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,26 +71,31 @@ Get started with the SDK in a few easy steps:
7171

7272
<h3><span>2</span>&nbsp;&nbsp;<img height="14" src="https://octicons-col.vercel.app/move-to-bottom/A770EF">&nbsp;&nbsp;Install SDK</h3>
7373

74+
<!--
7475
##### JavaScript
7576
7677
```sh
7778
npm install microsandbox
7879
```
80+
-->
7981

8082
##### Python
8183

8284
```sh
8385
pip install microsandbox
8486
```
8587

88+
<!--
8689
##### Rust
8790
8891
```sh
8992
cargo add microsandbox
9093
```
94+
-->
9195

9296
> [!NOTE]
9397
> There are [SDKs](./sdk) for other languages as well! Join us in expanding support for your favorite language.
98+
<!--
9499
>
95100
> <div align="left">
96101
> <a href="./sdk/c"><img src="https://img.shields.io/badge/C-A8B9CC?style=flat-square&logo=c&logoColor=white" alt="C"></a>
@@ -121,13 +126,15 @@ cargo add microsandbox
121126
> <a href="./sdk/swift"><img src="https://img.shields.io/badge/Swift-FA7343?style=flat-square&logo=swift&logoColor=white" alt="Swift"></a>
122127
> <a href="./sdk/zig"><img src="https://img.shields.io/badge/Zig-F7A41D?style=flat-square&logo=zig&logoColor=white" alt="Zig"></a>
123128
> </div>
129+
-->
124130

125131
##
126132

127133
<h3><span>3</span>&nbsp;&nbsp;<img height="14" src="https://octicons-col.vercel.app/file-binary/A770EF">&nbsp;&nbsp;Execute Code in Sandbox</h3>
128134

129135
`microsandbox` offers a growing list of sandbox environment types optimized for different execution requirements. Choose the appropriate sandbox (e.g., PythonSandbox or NodeSandbox) to run your code in a secure tailored environment.
130136

137+
<!--
131138
##### JavaScript
132139
133140
```js
@@ -142,6 +149,7 @@ console.log(await exec.output()); // prints Hello JavaScript!
142149
143150
await sb.stop();
144151
```
152+
-->
145153

146154
##### Python
147155

@@ -159,6 +167,7 @@ async def main():
159167
asyncio.run(main())
160168
```
161169

170+
<!--
162171
##### Rust
163172
164173
```rs
@@ -176,6 +185,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
176185
Ok(())
177186
}
178187
```
188+
-->
179189

180190
> [!NOTE]
181191
>

0 commit comments

Comments
 (0)