butterdb is a Python ORM for Google Drive Spreadsheets.
Project description
butterdb
========
| Master: |Build Status Master|
| Develop: |Build Status Develop|
`Documentation`_ | `butterdb on PyPi`_
butterdb is a library to help you work with Google Spreadsheet data. It lets you model your data as Python objects, to be easily manipulated or created.
How do I use it?
-----
.. image:: http://i.imgur.com/h75z1k6.png
::
import butterdb
import json
# For getting OAuth Credential JSON file see http://gspread.readthedocs.org/en/latest/oauth2.html
# Ensure that the client_email has been granted privileges to any workbooks you wish to access.
with open('SomeGoogleProject-2a31d827b2a9.json') as credentials_file:
json_key = json.load(credentials_file)
client_email = json_key['client_email']
private_key = str(json_key['private_key']).encode('utf-8')
database = butterdb.Database(name="MyDatabaseSheet", client_email=client_email, private_key=private_key)
@butterdb.register(database)
class User(butterdb.Model):
def __init__(self, name, password):
self.name = self.field(name)
self.password = self.field(password)
users = User.get_instances()
marianne = users[1]
print(marianne.password) # rainbow_trout
marianne.password = "hunter2"
marianne.commit()
How do I make instances?
=================
::
bob = User("bob", "BestPassword!")
bob.commit()
Where do I get it?
------------
``pip install butterdb``
Simple as that?
---------------
Yep! butterdb is a simple interface around `gspread`_. Just .commit() your objects when you want to update the spreadsheet!
How do I run the tests?
-----
`nosetests`
What works?
----------
* Store data in Google Spreadsheets (the cloud!!!)
* Models from classes
* Fields as attributes. decimals, ints and strings only (as far as I know)
* Commits
* Mocked unit tests, mock database
* Arbitrary cell execution with `=blah()` (free stored procedures?)
* Auto backup/bad patch control
What's missing?
---------------
* Spreadsheets must exist before connecting
* References
* Collections
* Customizable fields
* Customizable table size (arbitrarily hardcoded)
Feedback
--------
Comments, concerns, issues and pull requests welcomed. Reddit /u/Widdershiny or email me at ncwjohnstone@gmail.com.
License
-------
MIT License. See LICENSE file for full text.
.. _Documentation: http://butterdb.readthedocs.org
.. _butterdb on PyPi: https://pypi.python.org/pypi/butterdb
.. _gspread: https://github.com/burnash/gspread
.. |Build Status Master| image:: https://travis-ci.org/Widdershin/butterdb.png?branch=master
:target: https://travis-ci.org/Widdershin/butterdb
.. |Build Status Develop| image:: https://travis-ci.org/Widdershin/butterdb.png?branch=develop
:target: https://travis-ci.org/Widdershin/butterdb
History
-------
0.1.0 7/3/14
++++++++++++++++++
* First release on PyPI.
0.1.1 7/3/14
++++++++++++++++++
* Converted readme to rst from md
0.1.2 7/3/14
++++++++++++++++++
* Included HISTORY.rst in package build
0.1.3 7/3/14
++++++++++++++++++
* Model.field no longer requires name to be specified. Attribute name will be used if none is provided.
* Model no longer needs to have id as a keyword argument, or call super in init
* Tests now use pep8 asserts
0.1.4 7/4/14
++++++++++++++++++
* Renamed project to butterdb
0.1.5 12/6/15
++++++++++++++++++
* Use OAuth instead of now deprecated simple login (thanks to @julierae!)
* Fix a bug in get_instance that broke modifying fields (thanks to @dequis!)
========
| Master: |Build Status Master|
| Develop: |Build Status Develop|
`Documentation`_ | `butterdb on PyPi`_
butterdb is a library to help you work with Google Spreadsheet data. It lets you model your data as Python objects, to be easily manipulated or created.
How do I use it?
-----
.. image:: http://i.imgur.com/h75z1k6.png
::
import butterdb
import json
# For getting OAuth Credential JSON file see http://gspread.readthedocs.org/en/latest/oauth2.html
# Ensure that the client_email has been granted privileges to any workbooks you wish to access.
with open('SomeGoogleProject-2a31d827b2a9.json') as credentials_file:
json_key = json.load(credentials_file)
client_email = json_key['client_email']
private_key = str(json_key['private_key']).encode('utf-8')
database = butterdb.Database(name="MyDatabaseSheet", client_email=client_email, private_key=private_key)
@butterdb.register(database)
class User(butterdb.Model):
def __init__(self, name, password):
self.name = self.field(name)
self.password = self.field(password)
users = User.get_instances()
marianne = users[1]
print(marianne.password) # rainbow_trout
marianne.password = "hunter2"
marianne.commit()
How do I make instances?
=================
::
bob = User("bob", "BestPassword!")
bob.commit()
Where do I get it?
------------
``pip install butterdb``
Simple as that?
---------------
Yep! butterdb is a simple interface around `gspread`_. Just .commit() your objects when you want to update the spreadsheet!
How do I run the tests?
-----
`nosetests`
What works?
----------
* Store data in Google Spreadsheets (the cloud!!!)
* Models from classes
* Fields as attributes. decimals, ints and strings only (as far as I know)
* Commits
* Mocked unit tests, mock database
* Arbitrary cell execution with `=blah()` (free stored procedures?)
* Auto backup/bad patch control
What's missing?
---------------
* Spreadsheets must exist before connecting
* References
* Collections
* Customizable fields
* Customizable table size (arbitrarily hardcoded)
Feedback
--------
Comments, concerns, issues and pull requests welcomed. Reddit /u/Widdershiny or email me at ncwjohnstone@gmail.com.
License
-------
MIT License. See LICENSE file for full text.
.. _Documentation: http://butterdb.readthedocs.org
.. _butterdb on PyPi: https://pypi.python.org/pypi/butterdb
.. _gspread: https://github.com/burnash/gspread
.. |Build Status Master| image:: https://travis-ci.org/Widdershin/butterdb.png?branch=master
:target: https://travis-ci.org/Widdershin/butterdb
.. |Build Status Develop| image:: https://travis-ci.org/Widdershin/butterdb.png?branch=develop
:target: https://travis-ci.org/Widdershin/butterdb
History
-------
0.1.0 7/3/14
++++++++++++++++++
* First release on PyPI.
0.1.1 7/3/14
++++++++++++++++++
* Converted readme to rst from md
0.1.2 7/3/14
++++++++++++++++++
* Included HISTORY.rst in package build
0.1.3 7/3/14
++++++++++++++++++
* Model.field no longer requires name to be specified. Attribute name will be used if none is provided.
* Model no longer needs to have id as a keyword argument, or call super in init
* Tests now use pep8 asserts
0.1.4 7/4/14
++++++++++++++++++
* Renamed project to butterdb
0.1.5 12/6/15
++++++++++++++++++
* Use OAuth instead of now deprecated simple login (thanks to @julierae!)
* Fix a bug in get_instance that broke modifying fields (thanks to @dequis!)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
butterdb-0.1.5.tar.gz
(5.9 kB
view details)
File details
Details for the file butterdb-0.1.5.tar.gz
.
File metadata
- Download URL: butterdb-0.1.5.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c75d0c7d56e2c836fbf932afb6b4bd1bb74a747c81c9bd03efa795a4ea9c7f01 |
|
MD5 | 063c9a95dde3afd53d60e3f28ff33e32 |
|
BLAKE2b-256 | a198c08dfaeca39b2705377c4c27eda1b4ee51ef7b7041e14f2d17346556357e |