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
- Host: GitHub
- URL: https://github.com/vectorize-io/vectorize-clients
- Owner: vectorize-io
- Created: 2025-02-18T16:49:21.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-04-10T08:47:59.000Z (10 months ago)
- Last Synced: 2025-05-08T23:11:37.176Z (9 months ago)
- Topics: node, python, vectorize
- Language: Python
- Homepage: https://docs.vectorize.io/api/api-getting-started
- Size: 452 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vectorize Clients
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
```