You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pyBrAPI is a Python package that provides convenient access to data from BrAPI servers. It simplifies interacting with BrAPI endpoints by handling REST requests and responses, and returns data typed into data models.
5
+
6
+
## Setup and Installation
7
+
Download the release from this Github repository. Then install the package using `pip`:
8
+
9
+
```
10
+
pip install dist/pybrapi-0.1.0-py3-none-any.whl
11
+
```
12
+
13
+
## Usage Instructions
14
+
### Connect to server
15
+
```py
16
+
from pybrapi import BrAPI
17
+
18
+
server = BrAPI('https://test-server.brapi.org/brapi/v2/')
0 commit comments