mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 03:53:50 +00:00 
			
		
		
		
	- Updates API docs that have numbered instructions to use the
  `{start_tabs}` formatting we use in the help center.
- Cleans up formatting and revises documentation that shouldn't
  be formatted as a numbered instructions block.
- Cross-links related articles.
Fixes #28876.
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			870 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			870 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.
 | |
| 
 | |
| ## Related articles
 | |
| 
 | |
| * [Configuring the Python bindings](/api/configuring-python-bindings)
 |