Metadata-Version: 2.1
Name: fabman
Version: 1.2.10
Summary: Python wrappers for interacting with the Fabman API
Author: Davin Lawrence
Author-email: Davin Lawrence <davin.lawrence@utexas.edu>, Texas Inventionworks <tiw@utexas.edu>
Project-URL: Homepage, https://github.com/utexas-engr-tiw/fabman-api
Project-URL: Documentation, https://fabman-api.readthedocs.io/en/latest/
Project-URL: Bug Tracker, https://github.com/utexas-engr-tiw/fabman-api/issues
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Education
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests (>=2.31.0)
Requires-Dist: arrow (>=1.2.3)
Requires-Dist: pytz (==2023.3)

[![Fabman on PyPI](https://img.shields.io/pypi/v/fabman.svg)](https://pypi.python.org/pypi/fabman)
[![License](https://img.shields.io/pypi/l/fabman.svg)](https://pypi.python.org/pypi/fabman)
[![Python Versions](https://img.shields.io/pypi/pyversions/fabman.svg)](https://pypi.python.org/pypi/fabman)
[![Build Status](https://github.com/utexas-engr-tiw/fabman-api/actions/workflows/python-package.yml/badge.svg?branch=main)](https://github.com/utexas-engr-tiw/fabman-api/actions)
[![Coverage](https://codecov.io/gh/utexas-engr-tiw/fabman-api/branch/main/graph/badge.svg?token=AGABZU5YOJ)](https://codecov.io/gh/utexas-engr-tiw/fabman-api)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Documentation Status](https://readthedocs.org/projects/fabman-api/badge/?version=latest)](https://fabman-api.readthedocs.io/en/latest/?badge=latest)


# Fabman API 

Library for interfacing with the Fabman API. Created for Texas Inventionworks as part of the Cockrell School of Engineering at the University of Texas at Austin.

Official documentation for the Fabman API can be found [here](https://github.com/FabmanHQ/fabman-api). Live interaction and description of all endpoints can further be found [here](https://fabman.io/api/v1/documentation#/). This library is currently targeting version 2.3.1 of the Fabman API.

## Getting Started

To get started, simply install using pip:
```
pip install fabman
```
which will install the latest stable release for your use. Note that this library is in active, heavy development and the API may change with little warning. To use the latest state of this repo, use the following command:
```
pip install git+https://github.com/utexas-engr-tiw/fabman-api
```

To start interacting with the Fabman API, simply provide your API key:

```python
from fabman import Fabman

API_KEY = 'abcdef-123456789-a1b2c3d4e5f6a7b8'
f = Fabman(API_KEY)
...
```

From there, you can begin interacting with api endpoints as described in the official documentation. Most top-level methods return an object which manages that object. For example, to get a single member and update that member's name,
```python
member = f.get_member(12345)
member.update(firstName="Kira", lastName="Nerys")
```

All parameters except for IDs are taken in as kwargs and should follow the camelCase naming conventions found on the Fabman API. Moreover, the library performs minimal checking of parameters, leaving that to the Fabman API. For required fields for create and update fields, refer to the [Live Fabman API Documentation](https://fabman.io/api/v1/documentation#/). The one exception to this is the `lockVersion` requirement for update methods. All update methods will automatically add the current `lockVersion` parameter to the body.

Refer to the [library documentation](https://fabman-api.readthedocs.io/en/latest/) more information on this library.

## Contributing

We would love contributions! We are a small development team. To contribute, familiarize yourself with the code, the layout, make your edits and a pull request. We currently need help with

* Real life testing of the API
* Documentation
