ibis
ibis copied to clipboard
the portable Python dataframe library
### What happened? `epoch_seconds()` ignores the time-zone of a timestamp and treats the time-stamp as if a clock-time in UTC: ## Trino example: ```py con = ibis.trino.connect(...) tbl = con.table("sometable")...
### What is the motivation behind your request? I write data manipulation backend agnostic functions which take a table input and do the computation. The problem is that there is...
### Is your feature request related to a problem? No. ### What is the motivation behind your request? Would be convenient (and consistent) to be able to fully qualify the...
### Discussed in https://github.com/ibis-project/ibis/discussions/10483 Originally posted by **augcollet** November 13, 2024 Hello, I need your help to resolve a specific problem... From the following data with postgresql backend : ```python...
### Is your feature request related to a problem? _No response_ ### What is the motivation behind your request? I will often be running delete statements before insert statements. I...
### Is your feature request related to a problem? When using Ibis with a clickhouse database that has some columns of type uint256, Ibis doesn't recognize them, returning a type...
### Is your feature request related to a problem? I frequently am not working in the default schema in my postgres database, and between different schemas in the same query....
### What happened? I followed the instructions at https://ibis-project.org/backends/athena to connect to and use Amazon Athena backend as follows: ``` import os import ibis from dotenv import load_dotenv load_dotenv() #...
### Is your feature request related to a problem? The current implementation, with the dynamic `__getattr__` stuff in the top-level "ibis/__init__.py", makes it impossible for my IDE to understand that...
### Is your feature request related to a problem? Currently, when you pass a database or schema into the constructor of the backend, it goes and actually changes the state...