Giter Site home page Giter Site logo

bainmatt / datopy Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 4.68 MB

Assorted tools for data modeling, ETL, and web scraping.

Home Page: https://datopy.readthedocs.io

License: MIT License

Python 95.67% Makefile 4.33%
data-management data-modeling data-validation etl web-scraping

datopy's Introduction

datopy: data management tools for Python

CI

Documentation Status


datopy (da-toh-pie) is a Python library for people who work with unstructured data, providing a simple workflow for building data models and ETL pipelines.


This package also includes utilities for:

  • Data retrieval
  • Input/Output
  • Jupyter notebook workflows

Note

This project is under active development.

Getting Started

Installation

To use datopy, first install it using pip:

$ pip install "git+https://github.com/bainmatt/datopy.git#egg=datopy"

Cloning

Step 1. Clone the repo:

$ git clone https://github.com/bainmatt/datopy.git
$ cd datopy

Step 2. Install dependencies:

$ conda env create -f environment.yml
$ conda activate dato-py

Development

TODO

Usage

Dataset inspection (datopy.inspection)

Produce multiple parallel, informative displays of Pandas data frames and NumPy arrays for data exploration and inspection.

>>> import numpy as np
>>> import pandas as pd
>>> from datopy.inspection import display, make_df

>>> df1 = make_df('AB', [1, 2]); df2 = make_df('AB', [3, 4])
>>> display('df1', 'df2', 'pd.concat([df1, df2])', globs=globals(), bold=False)

df1
--- (2, 2) ---
   A   B
1  A1  B1
2  A2  B2


df2
--- (2, 2) ---
   A   B
3  A3  B3
4  A4  B4


pd.concat([df1, df2])
--- (4, 2) ---
   A   B
1  A1  B1
2  A2  B2
3  A3  B3
4  A4  B4

Metadata scraping (datopy._media_scrape)

TODO

Retrieve media-related data from Spotify, IMDb, and Wikipedia.

Thanks

datopy is powered by:

License

This project is licensed under the MIT License.

Contact

Project Link: https://github.com/bainmatt/datopy

datopy's People

Contributors

bainmatt avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.