Skip to content

Commit

Permalink
Merge pull request #7 from erezsh/dev
Browse files Browse the repository at this point in the history
0.1.0 + small changes
  • Loading branch information
erezsh authored Jun 14, 2024
2 parents 29b8e32 + 2df9521 commit 684bf2a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
1 change: 0 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
MIT License

Copyright (c) 2022 Datafold
Copyright (c) 2023 Erez Shinan

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Sqeleton

**Note: Sqeleton is still under construction. Many details are open to change.**

Sqeleton is a Python library for querying SQL databases.

It consists of -
Expand All @@ -12,7 +10,6 @@ It consists of -

It is comparable to other libraries such as SQLAlchemy or PyPika, in terms of API and intended audience. However, there are several notable ways in which it is different.


## **Features:**

🏃‍♂️**High-performance**: Sqeleton's API is designed to maximize performance using batch operations
Expand Down Expand Up @@ -166,9 +163,6 @@ def my_outerjoin(
```


# Sponsors

Special thanks to Datafold for having sponsored Sqeleton in its initial stages. For reference, [the original repo](https://github.com/datafold/sqeleton/).

# TODO

Expand All @@ -194,3 +188,7 @@ Special thanks to Datafold for having sponsored Sqeleton in its initial stages.
- [PyPika](https://github.com/kayak/pypika)
- [PonyORM](https://ponyorm.org/)
- [peewee](https://github.com/coleifer/peewee)

# Thanks

Thanks to Datafold for having sponsored Sqeleton in its initial stages. For reference, [the original repo](https://github.com/datafold/sqeleton/).
3 changes: 2 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sqeleton"
version = "0.0.9"
version = "0.1.0"
description = "Python library for querying SQL databases"
authors = ["Erez Shinan <erezshin@gmail.com>"]
license = "MIT"
Expand Down Expand Up @@ -61,7 +61,7 @@ postgresql = ["psycopg2"]
snowflake = ["snowflake-connector-python", "cryptography"]
presto = ["presto-python-client"]
oracle = ["cx_Oracle"]
# databricks = ["databricks-sql-connector"]
databricks = ["databricks-sql-connector"]
trino = ["trino"]
clickhouse = ["clickhouse-driver"]
vertica = ["vertica-python"]
Expand Down
4 changes: 2 additions & 2 deletions sqeleton/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .databases import connect
from .queries import table, this, SKIP, code
from .queries import table, this, SKIP, code, commit

__version__ = "0.0.9"
__version__ = "0.1.0"

0 comments on commit 684bf2a

Please sign in to comment.