iota-client 1.4.0

The official, general-purpose IOTA client library in Rust for interaction with the IOTA network (Tangle)
Documentation
---
title: Running Examples
description: The iota.rs has multiple code examples to get you up and running in no time. However, these require a specific set up depending on your language of choice.
image: /img/logo/iota_mark_light.png
keywords:
- how to
- examples
- npm 
- cargo
- yarn
- java
- nodejs
- python
- rust
- wasm
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import JavaRunningExamples from '../libraries/java/examples/_running_examples.mdx';
import NodejsRunningExamples from '../libraries/nodejs/examples/_running_examples.mdx';
import PythonRunningExamples from '../libraries/python/examples/_running_examples.mdx';
import RustRunningExamples from '../libraries/rust/examples/_running_examples.mdx';
import WasmRunningExamples from '../libraries/wasm/examples/_running_examples.md';

# Running Examples

<WarningPasswordStorage/>

<Tabs groupId="language">
    <TabItem value="java" label="Java">
        <JavaRunningExamples/>
    </TabItem>
    <TabItem value="nodejs" label="Nodejs">
        <NodejsRunningExamples/>
    </TabItem>
    <TabItem value="python" label="Python">
        <PythonRunningExamples/>
    </TabItem>
    <TabItem value="rust" label="Rust">
        <RustRunningExamples/>
    </TabItem>
    <TabItem value="wasm" label="Wasm">
        <WasmRunningExamples/>
    </TabItem>
</Tabs>