Skip to content

Commit

Permalink
rename repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ajshedivy committed Apr 17, 2024
1 parent ad9b282 commit 822d6e7
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

sys.path.insert(0, os.path.abspath("../../"))

from python_sc import VERSION, VERSION_SHORT # noqa: E402
from python_wsdb import VERSION, VERSION_SHORT # noqa: E402

# -- Project information -----------------------------------------------------

Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions python_sc/client/query.py → python_wsdb/client/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

from dataclasses_json import dataclass_json

from python_sc.client.sql_job import SQLJob
from python_sc.types import QueryOptions
from python_wsdb.client.sql_job import SQLJob
from python_wsdb.types import QueryOptions

T = TypeVar("T")

Expand Down
4 changes: 2 additions & 2 deletions python_sc/client/sql_job.py → python_wsdb/client/sql_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import websocket
from websocket import WebSocket, create_connection

from python_sc.types import (
from python_wsdb.types import (
ConnectionResult,
DaemonServer,
JDBCOptions,
Expand Down Expand Up @@ -114,7 +114,7 @@ def query(
sql: str,
opts: Optional[Union[Dict[str, Any], QueryOptions]] = None,
):
from python_sc.client.query import Query
from python_wsdb.client.query import Query

if isinstance(opts, dict):
opts = QueryOptions(**opts)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion python_sc/tls.py → python_wsdb/tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from dataclasses import dataclass
from typing import Optional, Union

from python_sc.types import DaemonServer
from python_wsdb.types import DaemonServer


async def get_certificate(server: DaemonServer):
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/prepare_changelog.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from datetime import datetime
from pathlib import Path

from python_sc.version import VERSION
from python_wsdb.version import VERSION


def main():
Expand Down
4 changes: 2 additions & 2 deletions test.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"metadata": {},
"outputs": [],
"source": [
"from python_sc.client.sql_job import SQLJob\n",
"from python_sc.types import DaemonServer\n",
"from python_wsdb.client.sql_job import SQLJob\n",
"from python_wsdb.types import DaemonServer\n",
"import pandas as pd"
]
},
Expand Down
6 changes: 3 additions & 3 deletions tests/hello_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import asyncio
from python_sc.client.sql_job import SQLJob
from python_sc.tls import get_certificate
from python_sc.types import DaemonServer
from python_wsdb.client.sql_job import SQLJob
from python_wsdb.tls import get_certificate
from python_wsdb.types import DaemonServer

creds = DaemonServer(
host="localhost",
Expand Down

0 comments on commit 822d6e7

Please sign in to comment.