A simple and light DB package
Project description
# instadb
A simple a light DB python package
## Features
- query from postgres and reshift
- load data into pandas dataframe
- query from sql or filename
- automatically setup connections from env variables
- automatic query annotation
- connect timeout retry with exponential backoff
### Installation
`pip install instadb`
### Basic Usage
```python
import instadb
db = instadb.Connection(url=database_url)
df = db.dataframe("select * from users limit 10")
```
If you have env variables that match the pattern `<key>_DATABASE_URL` then you can directly do:
```python
import instadb
df = instadb.key.dataframe("select * from users limit 10")
```
### Query from file
```python
df = instadb.key.dataframe(filename='./users.sql')
```
### Query from file with arguments
users.sql
```
select * from users where limit={limit}
```
```python
df = instadb.key.dataframe(filename='./users.sql', limit=100)
```
## TODO
- [ ] load data to list
- [ ] insert and update queries
- [ ] caching
A simple a light DB python package
## Features
- query from postgres and reshift
- load data into pandas dataframe
- query from sql or filename
- automatically setup connections from env variables
- automatic query annotation
- connect timeout retry with exponential backoff
### Installation
`pip install instadb`
### Basic Usage
```python
import instadb
db = instadb.Connection(url=database_url)
df = db.dataframe("select * from users limit 10")
```
If you have env variables that match the pattern `<key>_DATABASE_URL` then you can directly do:
```python
import instadb
df = instadb.key.dataframe("select * from users limit 10")
```
### Query from file
```python
df = instadb.key.dataframe(filename='./users.sql')
```
### Query from file with arguments
users.sql
```
select * from users where limit={limit}
```
```python
df = instadb.key.dataframe(filename='./users.sql', limit=100)
```
## TODO
- [ ] load data to list
- [ ] insert and update queries
- [ ] caching
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
instadb-0.4.1.tar.gz
(3.3 kB
view hashes)
Built Distribution
Close
Hashes for instadb-0.4.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | de270d3965a2fb0dfd3d74a97580cb436879e873ba274255a4cb14e7f7aa26b1 |
|
MD5 | c4be42400fe94f81c92b8be1426d02fa |
|
BLAKE2b-256 | 98e0b105bf09b64987689dffa22ed3e75341afbd7ca8819b9d61b8b687d98815 |