Metadata-Version: 2.1
Name: snapsheets
Version: 0.2.0
Summary: Wget snapshots of Google spreadsheets
Home-page: https://shotakaha.gitlab.io/snapsheets/
Author: shotakaha
Author-email: shotakaha+py@gmail.com
License: UNKNOWN
Project-URL: Documentation, https://shotakaha.gitlab.io/snapsheets/
Project-URL: Source Code, https://gitlab.com/shotakaha/snapsheets/
Keywords: wget curl google spreadhsheet
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Japanese
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pyyaml

[![GitLab pipeline](https://img.shields.io/gitlab/pipeline/shotakaha/snapsheets?style=for-the-badge)](https://gitlab.com/shotakaha/snapsheets/builds)


# Snapsheets

Wget snapshots of Google 

---

# Usage

```python
>>> import snapsheets as ss
>>> ss.add_config('test_config.yml')
>>> ss.get('test1', by='wget')
```

---

## Config

- Write config file in ``YAML`` format

```yaml
volumes:
  snapd: 'data/'

options:
  wget:
    '--quiet'

sheets:
  test1:
    key: '1NbSH0rSCLkElG4UcNVuIhmg5EfjAk3t8TxiBERf6kBM'
    gid: 'None'
    format: 'xlsx'
    sheet_name:
      - 'シート1'
      - 'シート2'
    stem: 'test_sheet'
    datefmt: '%Y'
```

---

# Documents

- https://shotakaha.gitlab.io/snapsheets/ [WIP]


