Skip to content

a2d24/botoful

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Contributing

Contributions are welcome.

Getting started

To work on the botoful codebase, you'll want to clone the project locally and install the required dependencies via poetry.

$ git clone git@github.com:a2d24/botoful.git

Quickstart

import boto3
from botoful import Query

client = boto3.client('dynamodb')

result = Query(table='Cars') \
            .key(brand='BMW', model__begins_with='1 Series') \
            .attributes(['brand', 'year', 'model']) \
            .execute(client)

print(result.items)

Documentation

See www.botoful.com

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages