Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trivio/splicer
Splicer - adds relation querying (SQL) to any python project
https://github.com/trivio/splicer
database python sql
Last synced: 3 months ago
JSON representation
Splicer - adds relation querying (SQL) to any python project
- Host: GitHub
- URL: https://github.com/trivio/splicer
- Owner: trivio
- Created: 2013-08-09T22:10:59.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-04-27T04:37:30.000Z (over 2 years ago)
- Last Synced: 2024-05-03T06:34:52.510Z (6 months ago)
- Topics: database, python, sql
- Language: Python
- Homepage:
- Size: 269 KB
- Stars: 71
- Watchers: 11
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Splicer [![Build Status](https://travis-ci.org/trivio/splicer.png)](https://travis-ci.org/trivio/splicer)
======================``splicer`` makes the entire world look like a SQL database.
It is a python module for working with data from disparate sources
using commands to those familiar with SQL. It aims to make quick
one off queries and ETL scripts more declarative rather than procedural.Inspired by projects like BigQuery, Postgres Foreign Data Wrappers
and Multicorn, except no database is required.``splicer`` enables:
* Analysts to create Datasets linking various
foreign tables together along with User Defined Functions written in python.
Once defined, the datasets can be queried via SQL Select statements to create
new Views of the Data.* Extension Developers to create extensions that make various data sources
REST endpoints, log files, NoSQL Servers, traditional Databases,
CSV Files to behave like tables.``splicer`` will take advantage of these various sources' capabilities where
appropriate and will compensate for sources that lack basic
features.For example if a database supports joins and you want to query
two tables within that database, ``splicer`` will have that system
perform the join for you. If however you're working with a less
sophisticated source, like plain files, ``splicer`` will perform the
operations for you locally.Enough reading! [Try it out][1]
[1]: https://splicer.readthedocs.org/en/latest/install.html#installation "Installing Splicer"