All Projects → Squarespace → Datasheets

Squarespace / Datasheets

Licence: other
Read data from, write data to, and modify the formatting of Google Sheets

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Datasheets

Gspread Pandas
A package to easily open an instance of a Google spreadsheet and interact with worksheets through Pandas DataFrames.
Stars: ✭ 226 (-61.89%)
Mutual labels:  google, data-science, pandas, data-analytics, data
Danfojs
danfo.js is an open source, JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.
Stars: ✭ 1,304 (+119.9%)
Mutual labels:  dataframe, data-science, pandas, data-analytics
Pdpipe
Easy pipelines for pandas DataFrames.
Stars: ✭ 590 (-0.51%)
Mutual labels:  dataframe, data-science, pandas, data
Data Science Resources
👨🏽‍🏫You can learn about what data science is and why it's important in today's modern world. Are you interested in data science?🔋
Stars: ✭ 171 (-71.16%)
Mutual labels:  data-science, data-analytics, data
Dataframe
C++ DataFrame for statistical, Financial, and ML analysis -- in modern C++ using native types, continuous memory storage, and no pointers are involved
Stars: ✭ 828 (+39.63%)
Mutual labels:  dataframe, data-science, pandas
Datacompy
Pandas and Spark DataFrame comparison for humans
Stars: ✭ 147 (-75.21%)
Mutual labels:  data-science, pandas, data
Awesome Bigdata
A curated list of awesome big data frameworks, ressources and other awesomeness.
Stars: ✭ 10,478 (+1666.95%)
Mutual labels:  data-science, data-analytics, data
Foxcross
AsyncIO serving for data science models
Stars: ✭ 18 (-96.96%)
Mutual labels:  dataframe, data-science, pandas
Pyjanitor
Clean APIs for data cleaning. Python implementation of R package Janitor
Stars: ✭ 647 (+9.11%)
Mutual labels:  dataframe, pandas, data
Dataframe Go
DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration
Stars: ✭ 487 (-17.88%)
Mutual labels:  dataframe, data-science, pandas
Koalas
Koalas: pandas API on Apache Spark
Stars: ✭ 3,044 (+413.32%)
Mutual labels:  dataframe, data-science, pandas
Boltzmannclean
Fill missing values in Pandas DataFrames using Restricted Boltzmann Machines
Stars: ✭ 23 (-96.12%)
Mutual labels:  dataframe, data-science, pandas
Data Science Hacks
Data Science Hacks consists of tips, tricks to help you become a better data scientist. Data science hacks are for all - beginner to advanced. Data science hacks consist of python, jupyter notebook, pandas hacks and so on.
Stars: ✭ 273 (-53.96%)
Mutual labels:  data-science, pandas, data
Pandasvault
Advanced Pandas Vault — Utilities, Functions and Snippets (by @firmai).
Stars: ✭ 316 (-46.71%)
Mutual labels:  dataframe, data-science, pandas
Agile data code 2
Code for Agile Data Science 2.0, O'Reilly 2017, Second Edition
Stars: ✭ 413 (-30.35%)
Mutual labels:  data-science, data
Pycon 2019 Tutorial
Data Science Best Practices with pandas
Stars: ✭ 410 (-30.86%)
Mutual labels:  data-science, pandas
Isp Data Pollution
ISP Data Pollution to Protect Private Browsing History with Obfuscation
Stars: ✭ 425 (-28.33%)
Mutual labels:  data-analytics, data
Rio
A Swiss-Army Knife for Data I/O
Stars: ✭ 467 (-21.25%)
Mutual labels:  data-science, data
Finance Go
📊 Financial markets data library implemented in go.
Stars: ✭ 392 (-33.9%)
Mutual labels:  pandas, data
Data Science Ipython Notebooks
Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines.
Stars: ✭ 22,048 (+3618.04%)
Mutual labels:  data-science, pandas

datasheets

|pip_versions| |travis_ci| |coveralls|

.. |pip_versions| image:: https://img.shields.io/pypi/pyversions/datasheets.svg :target: https://pypi.python.org/pypi/datasheets

.. |travis_ci| image:: https://travis-ci.org/Squarespace/datasheets.svg?branch=master :target: https://travis-ci.org/Squarespace/datasheets

.. |coveralls| image:: https://coveralls.io/repos/github/Squarespace/datasheets/badge.svg?branch=master&service=github :target: https://coveralls.io/github/Squarespace/datasheets?branch=master

datasheets is a library for interfacing with Google Sheets, including reading data from, writing data to, and modifying the formatting of Google Sheets. It is built on top of Google's google-api-python-client, google_auth, and google_auth_oauthlib_ libraries using the Google Drive v3_ and Google Sheets v4_ REST APIs.

.. _google-api-python-client: https://github.com/google/google-api-python-client .. _google_auth: https://github.com/GoogleCloudPlatform/google-auth-library-python .. _google_auth_oauthlib: https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib .. _Google Drive v3: https://developers.google.com/drive/v3/reference/ .. _Google Sheets v4: https://developers.google.com/sheets/reference/rest/

It can be installed with pip via pip install datasheets.

Detailed information can be found in the documentation_.

.. _documentation: https://datasheets.readthedocs.io/en/latest/

Basic Usage

Get the necessary OAuth credentials from the Google Developer Console as described in Getting OAuth Credentials_.

.. _Getting OAuth Credentials: https://datasheets.readthedocs.io/en/latest/getting_oauth_credentials.html

After that, using datasheets looks like:

.. code-block:: python

import datasheets

# Create a data set to upload
import pandas as pd
df = pd.DataFrame([('a', 1.3), ('b', 2.7), ('c', 3.9)], columns=['letter', 'number'])

client = datasheets.Client()
workbook = client.create_workbook('my_new_workbook')
tab = workbook.create_tab('my_new_tab')

# Upload a data set
tab.insert_data(df, index=False)

# Fetch the data again
df_again = tab.fetch_data()

# Show workbooks you have access to; this may be slow if you are shared on many workbooks
client.fetch_workbooks_info()

# Show tabs within a given workbook
workbook.fetch_tab_names()

For further information, see the documentation_.

License

Copyright 2018 Squarespace, INC.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].