Load setting value from Google Sheets
Project description
gssetting
About
gssetting is load setting value from Google Sheets.
Installation
To install gssetting, use pip.
pip install gssetting
Examples
Google Sheets example.
A | name | empty | value |
---|---|---|---|
B | test1 | none | value |
C | test2 | ok | value ok |
Sample code
from dataclasses import dataclass
from gssetting import GoogleSpreadSheetSetting, GSSetting
@dataclass
class Setting(GSSetting):
username: str
value: str
# Same header value of sheets
headers = ["name", "value"]
if __name__ == "__main__":
gs_setting = GoogleSpreadSheetSetting(
"./service_account.json", "document_id"
)
settings = gs_setting.load("sheet_name", "A1:C3", Setting)
print(settings)
for setting in settings:
print(setting.username.value)
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
gssetting-0.0.1.tar.gz
(3.3 kB
view hashes)
Built Distribution
Close
Hashes for gssetting-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d542a31072523314f20777d836af7d781f72f94f3fa1101bcd8e0d5845378fee |
|
MD5 | 995e74b9790a7baff4aef652d274a476 |
|
BLAKE2b-256 | 5bae860799b0b74e27f54036b721e6790c0edb75684cc1daffc2bdc1517f0b80 |