Skip to main content

A simple query interface for tabular data that's light-weight and easy to learn.

Project description

Current Build Status Development Status Apache 2.0 License Supported Python Versions

Squint is a simple query interface for tabular data that’s light-weight and easy to learn. A core feature of Squint is that the structure of a query’s selection determines the structure of its result. With it you can:

  • Select data using Python literals—sets, lists, dictionaries, etc.—and get results in the same format.

  • Aggregate, map, filter, reduce, and otherwise manipulate data.

  • Lazily iterate over results, write them to a file, or eagerly evaluate them in memory.

  • Analyze data from CSV, Excel, SQL, and other data sources.

Documentation:
Official:
Development:

Some Examples

The examples below will query a CSV file containing the following data (example.csv):

A

B

C

x

foo

20

x

foo

30

y

foo

10

y

bar

20

z

bar

10

z

bar

10

To begin, we load the CSV file into a Select object:

import squint

select = squint.Select('example.csv')

When you select a

The result contains a

single column

select('A')

list of values from that column

['foo',
 'foo',
 'foo',
 'bar',
 'bar',
 'bar']

tuple of columns

select(('A', 'B'))

list of tuples with values from those columns

[('x', 'foo'),
 ('x', 'foo'),
 ('y', 'foo'),
 ('y', 'bar'),
 ('z', 'bar'),
 ('z', 'bar')]

set of columns

select({'A', 'B'})

list of sets with values from those columns

[{'x', 'foo'},
 {'x', 'foo'},
 {'y', 'foo'},
 {'y', 'bar'},
 {'z', 'bar'},
 {'z', 'bar'}]

dictionary of columns

select({'A': 'C'})

dictionary with keys and values from those columns

{'x': [20, 30],
 'y': [10, 20],
 'z': [10, 10]}

(Notice that values are grouped by matching key.)

dictionary with a tuple of column values

select({'A': ('B', 'C')})

dictionary with keys and tuples of values from those columns

{'x': [('foo', 20), ('foo', 30)],
 'y': [('foo', 10), ('bar', 20)],
 'z': [('bar', 10), ('bar', 10)]}

dictionary with a tuple of column keys

select({('A', 'B'): 'C'})

dictionary with tuple keys and values from those columns

{('x', 'foo'): [20, 30],
 ('y', 'foo'): [10],
 ('y', 'bar'): [20],
 ('z', 'bar'): [10, 10]}

Installation

The Squint package is tested on Python 2.7, 3.4 through 3.8, PyPy, and PyPy3; and is freely available under the Apache License, version 2.

The easiest way to install squint is to use pip:

pip install squint

To upgrade an existing installation, use the “--upgrade” option:

pip install --upgrade squint

The development repository for squint is hosted on GitHub. If you need bug-fixes or features that are not available in the current stable release, you can “pip install” the development version directly from GitHub:

pip install --upgrade https://github.com/shawnbrown/squint/archive/master.zip

All of the usual caveats for a development install should apply—only use this version if you can risk some instability or if you know exactly what you’re doing. While care is taken to never break the build, it can happen.


Freely licensed under the Apache License, Version 2.0

Copyright 2015 - 2020 National Committee for an Effective Congress, et al.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

squint-0.2.0.tar.gz (50.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

squint-0.2.0-py2.py3-none-any.whl (41.9 kB view details)

Uploaded Python 2Python 3

File details

Details for the file squint-0.2.0.tar.gz.

File metadata

  • Download URL: squint-0.2.0.tar.gz
  • Upload date:
  • Size: 50.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for squint-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e982a7ce42cc5b6cd423f713c7903d6bbfbab9047d33bd790ba90349f7f61186
MD5 0d9d596f2037b2a930929c89a2a90b03
BLAKE2b-256 32122a2e3f58940847dd725770e47aeae047e2354874bed4c12445e91edec77c

See more details on using hashes here.

File details

Details for the file squint-0.2.0-py2.py3-none-any.whl.

File metadata

  • Download URL: squint-0.2.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for squint-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 677761ade70e8c3194bf933563cc5983619b97a82ac972a7fe145ec80d48036c
MD5 ca25d4936e39e049cda1b446fb60212d
BLAKE2b-256 9d4a805f38f3a3ae6437dad221068276ba032939a2e05f8de0fde414724deb91

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page