Metadata-Version: 2.1
Name: qbandas
Version: 1.2.1
Summary: Integrates the popular data handling library Pandas and the QuickBase API
Project-URL: homepage, https://pypi.org/project/qbandas/
Project-URL: repository, https://github.com/jhopwood-jjk/qBandas
Project-URL: documentation, https://jhopwood-jjk.github.io/qbandas/index.html
Author: Joshua Hopwood
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: pandas==1.4.3
Requires-Dist: requests==2.28.1
Description-Content-Type: text/markdown

# qBandas

qBandas (QuickBase + Pandas) is a Python package designed to effeciently 
transfer tabular data between QuickBase applications and the popular Python data
handling package Pandas. If you are new to Pandas, you can read more about it 
[here](https://pandas.pydata.org/).

The advantages of this approach over a QuickBase pipeline are:

* Access to databases through Python packages.
* Greater control over features like error logging, data processing, 
  automated reporting, and scheduling.
* Significantly less performance impact on your QuickBase application.
* Access tabular data from local sources. 
* Easily pull data from a QuickBase app into Python.

The disadvantages of this approach compared to a pipeline are:

* Requires some knowledge of Python and Pandas.

Please [read the docs](https://jhopwood-jjk.github.io/qbandas/index.html) before
using this package.

## Installation

```bash
python3 -m pip install -U pip qbandas
```

You can now use it through import.

```python
import qbandas
```