An open API service indexing awesome lists of open source software.

https://github.com/vectorize-io/vectorize-clients

Vectorize Clients monorepo
https://github.com/vectorize-io/vectorize-clients

node python vectorize

Last synced: 9 months ago
JSON representation

Vectorize Clients monorepo

Awesome Lists containing this project

README

          

# Vectorize Clients



PyPI


Pypi


NPM

This repository contains source and test code for **Vectorize** clients in different languages.

The clients are generated automatically using OpenAPI generator, starting from the OpenAPI specification in the `vectorize_api.json` file that is downloaded from the [Vectorize Platform OpenAPI endpoint](https://platform.vectorize.io/api/openapi).

## How to
- Python
- [Getting started](./src/python/README.md)
- [Official documentation](https://docs.vectorize.io/api/api-getting-started)
- [Code Reference](https://vectorize-io.github.io/vectorize-clients/python/vectorize_client/api.html)
- TypeScript
- [Getting started](./src/ts/README.md)
- [Official documentation](https://docs.vectorize.io/api/api-getting-started)
- [Code Reference](https://vectorize-io.github.io/vectorize-clients/ts/)

## Generate and release clients
To generate a client, run the following command:

```bash
npm install

npm run generate:ts
npm run generate:python
```

To release a client, run the following command:

```bash
npm install

npm run release:ts
npm run release:python
```