Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,23 @@

[![foxglove-client on PyPI](https://img.shields.io/pypi/v/foxglove-client?label=pypi%20%7C%20foxglove-client)](https://pypi.org/project/foxglove-client/)

This library provides a convenient python client for [Foxglove](https://foxglove.dev/).
A convenient python client for [Foxglove](https://foxglove.dev/).

In order to use the client you will first have to create an API token for your organization on your organization's [settings page](https://app.foxglove.dev/~/settings).
## Getting Started

Read more about the API in the [Foxglove API Docs](https://docs.foxglove.dev/api/).
Install from [PyPI](https://pypi.org/project/foxglove-client/):

## Sample Usage
```
pip install foxglove-client
```

Create an API token for your organization on your organization's [settings page](https://app.foxglove.dev/~/settings) and read more in the [Foxglove API Docs](https://docs.foxglove.dev/api/).

Examples of various client features can be found in the `examples` directory.

## Running Tests
## Development

### Running Tests

```bash
pipenv install --dev
Expand All @@ -21,7 +27,7 @@ pipenv run python -m pytest

In addition to unit tests, all PRs that change behavior should also be tested against the Foxglove API.

## Release Process
### Release Process

Release numbering follows a major.minor.patch format, abbreviated as "X.Y.Z" below.

Expand Down
Loading