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
|
2018-09-26 04:28:29 +02:00
|
|
|
libraries available for a few popular languages.
|
2017-11-08 19:01:05 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{start_tabs}
|
|
|
|
{tab|python}
|
|
|
|
|
|
|
|
Install the Python API with [pip](https://pypi.python.org/pypi/zulip/):
|
2017-11-08 19:01:05 +01:00
|
|
|
|
2017-07-25 02:37:04 +02:00
|
|
|
```
|
|
|
|
pip install zulip
|
|
|
|
```
|
2017-11-08 19:01:05 +01:00
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|zulip-send}
|
2017-11-08 19:01:05 +01:00
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
Included with the Python bindings:
|
2017-11-08 19:01:05 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
pip install zulip
|
|
|
|
```
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|js}
|
2017-11-08 19:01:05 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
```
|
|
|
|
|
2019-01-16 19:05:25 +01:00
|
|
|
{tab|curl}
|
|
|
|
|
|
|
|
No download required!
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{end_tabs}
|
2019-11-19 18:21:24 +01:00
|
|
|
|
2019-11-22 20:08:29 +01:00
|
|
|
See also [user-contributed client libraries](/api/client-libraries)
|
|
|
|
for many other languages.
|
2024-02-10 00:10:17 +01:00
|
|
|
|
|
|
|
## Related articles
|
|
|
|
|
|
|
|
* [Configuring the Python bindings](/api/configuring-python-bindings)
|