Metadata-Version: 2.1
Name: dataco
Version: 0.0.9
Summary: tool to interact with data from different storage services
Home-page: https://github.com/sang-d/data-connector
Author: SangDinh
Author-email: sxuan29@gmail.com
Requires-Python: >=3.4, <4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: boto3
Requires-Dist: google-api-python-client
Requires-Dist: google-auth-httplib2
Requires-Dist: google-auth-oauthlib


#### To install

`python -m pip dataco`


#### Examples

```python
>>> from dataco import S3, GDrive

>>> s3 = S3('bucket_name')
>>> df = s3.read_csv('file_name.csv')

>>> drive = GDrive('credential_file')
>>> df = drive.read_excel('file_name.xlsx', 'sheet_id')

>>> files = drive.search_files_by_name('cities.csv')
```
