-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
182 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ pub mod rewriting; | |
pub mod sparql_database; | ||
mod sparql_result_to_polars; | ||
pub mod splitter; | ||
mod rename_vars; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[project] | ||
name = "chrontext" | ||
description = "Hybrid SPARQL query engine for timeseries data" | ||
dependencies = ["polars>=0.20.2", "pyarrow>=7.0.0", "pandas", "sqlalchemy>=2.0.31", "sqlalchemy_bigquery==1.11.0"] | ||
dependencies = ["polars>=0.20.2", "pyarrow>=7.0.0", "pandas", "sqlalchemy>=2.0.31", "sqlalchemy_bigquery==1.11.0", "databricks-sql-connector>=3.3.0"] | ||
readme = "README.md" | ||
authors = [{name = "Magnus Bakken", email = "[email protected]" }] | ||
license = {file = "LICENSE"} | ||
authors = [{ name = "Magnus Bakken", email = "[email protected]" }] | ||
license = { file = "LICENSE" } | ||
requires-python = ">=3.9" | ||
keywords = ["rdf", "graph", "arrow", "sparql", "timeseries"] | ||
classifiers = [ | ||
|
@@ -26,5 +26,5 @@ Repository = "https://github.com/DataTreehouse/chrontext" | |
Changelog = "https://github.com/DataTreehouse/chrontext/releases" | ||
|
||
[build-system] | ||
requires = ["maturin==1.5.1"] | ||
requires = ["maturin==1.7.1"] | ||
build-backend = "maturin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ requests>=2.32.0 | |
sparqlwrapper==2.0.0 | ||
asyncua==1.0.4 | ||
duckdb>=1.0.0 | ||
pytest-mock==3.14.0 |
Oops, something went wrong.