S3access

Latest version: v0.9.0

Safety actively analyzes 641872 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 2

0.8.0

Readers can now take `Options` – currently supports `distinct: bool`. See docstrings and pandas reader test case.

0.7.4

- Fixes an issue with empty results

0.7.3

A `print` statement from ad-hoc debugging slipped in, removing it.

0.7.2

0.7.1

Fixes quoting around simple query expressions introduced in 0.7.0

0.7.0

A new kind of filters has been added:


s3.select(..., [
('foo', '=', 'quux'),
OR(
('bar', '>', 0),
('quz', '<', 0),
)
]


Instead of a dictionary a list can be passed as filters. Each item is either a 3-tuple or an AND or an OR which in turn can consist of 3-tuples or AND and ORs and so on.

The old syntax still works and is easier for simple queries:


s3.select(..., {
'foo': 'quux'
})


The new syntax allows more complex queries with conditions on multiple columns.

Page 1 of 2

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.