Metadata-Version: 2.4
Name: QtFactor
Version: 0.1.2
Summary: A client for the QtFactor API
Home-page: https://github.com/pypa/sampleproject
Author: User
Author-email: user@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pandas
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# QtFactor

A Python client for the QtFactor API.

This package provides a client to interact with a running QtFactor server instance.

**IMPORTANT**: This is a client-only package. Before using this library, you must have a QtFactor server instance running and accessible. The client is configured to connect to the `SERVER_URL` specified within the package.

## Installation

```bash
pip install QtFactor
```

## Usage

```python
from qtfactor import QtFactor

# Initialize the client with your license code
qt = QtFactor(license_code="YOUR_LICENSE_CODE")

# Use the client to call API methods
data = qt.stock_basic()
print(data)
```
