Skip to main content

Load setting value from Google Sheets

Project description

gssetting

PyPI License: MIT

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


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)

Uploaded Source

Built Distribution

gssetting-0.0.1-py3-none-any.whl (5.7 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