mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	- Updates `.prettierignore` for the new directory.
- Updates any reference to the API documentation directory for
  markdown files to be `api_docs/` instead of `zerver/api/`.
- Removes a reference link from `docs/documentation/api.md` that
  hasn't referenced anything in the text since commit 0542c60.
- Update rendering of API documentation for new directory.
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			778 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			778 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# Installation instructions
 | 
						|
 | 
						|
Zulip's REST API is easy to work with directly, but there are API
 | 
						|
libraries available for a few 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.
 | 
						|
 | 
						|
{start_tabs}
 | 
						|
{tab|python}
 | 
						|
 | 
						|
Install the Python API with [pip](https://pypi.python.org/pypi/zulip/):
 | 
						|
 | 
						|
```
 | 
						|
pip install zulip
 | 
						|
```
 | 
						|
 | 
						|
{tab|zulip-send}
 | 
						|
 | 
						|
Included with the Python bindings:
 | 
						|
 | 
						|
```
 | 
						|
pip install zulip
 | 
						|
```
 | 
						|
 | 
						|
{tab|js}
 | 
						|
 | 
						|
Install the JavaScript API with [npm](https://www.npmjs.com/package/zulip-js):
 | 
						|
 | 
						|
```
 | 
						|
npm install zulip-js
 | 
						|
```
 | 
						|
 | 
						|
{tab|curl}
 | 
						|
 | 
						|
No download required!
 | 
						|
 | 
						|
{end_tabs}
 | 
						|
 | 
						|
See also [user-contributed client libraries](/api/client-libraries)
 | 
						|
for many other languages.
 |