Skip to main content

Wrapper for working with Slate databases.

Project description

# Slate DB
A Python wrapper for executing Slate Custom SQL in Python.

## Installation
You must first install the [ODBC Driver for SQL Server](https://docs.microsoft.com/en-us/sql/connect/odbc/download-odbc-driver-for-sql-server?view=sql-server-2017).

Then install via pip:
```
pip install git+https://github.com/jamie-r-davis/slate_db
```

## Usage
The `SlateDB.select` method returns a generator which will yield any records that match your `sql` query. By default, each record is returned as an AttrDict, enabling access via keys or via attributes:

```python
>>> from slate_db import SlateDB
>>> db = SlateDB(server='your.server.com',
port=1441,
db='dbname-test',
username='user',
password='secret-password')

# select all records with last name "Smith"
>>> sql = """select * from person where last = 'Smith'"""
>>> for record in db.select(sql):
>>> print("Via attribute: {} <{}>".format(record.name, record.email))
>>> print("Via key: {} <{}>".format(record['name'], record['email']])
# Via attribute: Smith, John <john.smith@example.com>
# Via key: Smith, John <john.smith@example.com>
# Via attribute: Smith, Granny <granny.smith@example.com>
# Via key: Smith, Granny <granny.smith@example.com>
```


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

slate_db-0.1.1.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

slate_db-0.1.1-py3-none-any.whl (3.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page