Metadata-Version: 2.1
Name: easybq
Version: 0.3.0
Summary: BigQuery Wrapper
Home-page: https://github.com/ukwksk/easybq
Author: ukwksk
Author-email: pylibs@ukwksk.co
Maintainer: ukwksk
Maintainer-email: pylibs@ukwksk.co
License: MIT
Description: # easybq | Easy BigQuery
        
        ## Install
        ```bash
        pip install easybq
        ```
        
        If you upload file via gcs, you may install such as
        ```bash
        pip insrtall easybq[gcs]
        ``` 
        
        ## Usage
        ```python
        import easybq
        
        dataset = 'sample_dataset'
        table = 'sample_table'
        csvfile = 'sample.csv'
        
        bq = easybq.Client()
        
        schema = bq.get_schema(dataset, table)
        bq.upload_csv(filename=csvfile, 
                      dataset=dataset, table=table, schema=schema)
        ```
        
Keywords: Google BigQuery
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: gcs
