2017-07-25 02:37:04 +02:00
|
|
|
# Installation instructions
|
|
|
|
|
2017-11-08 19:01:05 +01:00
|
|
|
Zulip's REST API is easy to work with directly, but there are API
|
|
|
|
libraries available for various popular languages.
|
|
|
|
|
|
|
|
The Python library is the most advanced (and has tools for easily
|
|
|
|
writing interactive bots that react to messages), so we recommend it
|
|
|
|
if you're trying to decide.
|
|
|
|
|
|
|
|
<div class="code-section" markdown="1">
|
|
|
|
<ul class="nav">
|
|
|
|
<li data-language="curl">curl</li>
|
|
|
|
<li data-language="python">Python</li>
|
|
|
|
<li data-language="zulip-send">zulip-send</li>
|
|
|
|
<li data-language="javascript">JavaScript</li>
|
|
|
|
</ul>
|
|
|
|
<div class="blocks">
|
|
|
|
|
|
|
|
<div data-language="curl" markdown="1">
|
|
|
|
No download required!
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div data-language="zulip-send" markdown="1">
|
|
|
|
Included with the Python bindings:
|
|
|
|
|
2017-07-25 02:37:04 +02:00
|
|
|
```
|
|
|
|
pip install zulip
|
|
|
|
```
|
2017-11-08 19:01:05 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div data-language="python" markdown="1">
|
|
|
|
Install the Python API with [pip](https://pypi.python.org/pypi/zulip/):
|
|
|
|
|
|
|
|
```
|
|
|
|
pip install zulip
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div data-language="javascript" markdown="1">
|
|
|
|
Install the JavaScript API with [npm](https://www.npmjs.com/package/zulip-js):
|
|
|
|
|
2017-07-25 02:37:04 +02:00
|
|
|
```
|
|
|
|
npm install zulip-js
|
|
|
|
```
|
|
|
|
|
2017-11-08 19:01:05 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|