Skip to content

Commit 2253744

Browse files
authored
rename the root folder of the Python SDK (#3361)
* rename the root folder of the Python SDK * enable workflow on PRs * more fixes * more fixes * finally working * update and lint
1 parent 0f7d9aa commit 2253744

File tree

7 files changed

+52
-37
lines changed

7 files changed

+52
-37
lines changed

.github/workflows/python-sdk.yaml

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
name: Verify Python SDK
22
on:
33
push:
4-
# paths-ignore:
5-
# - '.gitignore'
6-
# - 'LICENSE'
7-
# - 'README*'
8-
# - 'docs/**'
9-
# - '.github/workflows/**'
10-
# branches: [main, '[1-9].[0-9].x']
11-
# pull_request:
12-
# paths-ignore:
13-
# - '.gitignore'
14-
# - 'LICENSE'
15-
# - 'README*'
16-
# - 'docs/**'
17-
# branches: [main]
4+
paths-ignore:
5+
- '.gitignore'
6+
- 'LICENSE'
7+
- 'README*'
8+
- 'docs/**'
9+
- '.github/workflows/**'
10+
branches: [main, '[1-9].[0-9].x']
11+
pull_request:
12+
paths-ignore:
13+
- '.gitignore'
14+
- 'LICENSE'
15+
- 'README*'
16+
- 'docs/**'
17+
branches: [main]
1818

1919
jobs:
2020
build-verify:

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,11 @@ website
2525
apicurio-codegen
2626
/multitenancy/
2727
/docs/.jbang/
28+
29+
python-sdk/dist
30+
python-sdk/kiota_tmp
31+
python-sdk/apicurioregistrysdk/client
32+
python-sdk/openapi.json
33+
__pycache__
34+
35+

python-sdk/.gitignore

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
1-
dist
2-
kiota_tmp
3-
python_sdk/client
4-
51
__pycache__
6-
2+
.pytest_cache
File renamed without changes.

python-sdk/kiota-gen.py

+19-11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import os
55
import stat
66
import sys
7+
import shutil
78
import platform
89
from pathlib import Path
910

@@ -47,17 +48,24 @@ def generate_kiota_client_files(setup_kwargs):
4748
st = os.stat(kiota_bin)
4849
os.chmod(kiota_bin, st.st_mode | stat.S_IEXEC)
4950

50-
openapi_doc = os.path.join(
51-
sys.path[0],
52-
"..",
53-
"common",
54-
"src",
55-
"main",
56-
"resources",
57-
"META-INF",
58-
"openapi.json",
59-
)
60-
output = Path(__file__).parent.joinpath("python_sdk", "client")
51+
openapi_doc = Path(__file__).parent.joinpath("openapi.json")
52+
# TODO: improve this to do a better clean-install
53+
if not os.path.exists(openapi_doc):
54+
shutil.copyfile(
55+
os.path.join(
56+
sys.path[0],
57+
"..",
58+
"common",
59+
"src",
60+
"main",
61+
"resources",
62+
"META-INF",
63+
"openapi.json",
64+
),
65+
openapi_doc,
66+
)
67+
68+
output = Path(__file__).parent.joinpath("apicurioregistrysdk", "client")
6169

6270
command = f'{kiota_bin} generate --language=python --openapi="{openapi_doc}" --output="{output}" --class-name=RegistryClient --namespace-name=client --clean-output --clear-cache'
6371
print(f"Executing kiota command: {command}")

python-sdk/pyproject.toml

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,21 @@ version = "2.4.2"
44
description = ""
55
authors = ["Andrea Peruffo <andrea.peruffo1982@gmail.com>"]
66
readme = "README.md"
7-
packages = [{include = "python_sdk"}]
7+
packages = [{include = "apicurioregistrysdk"}]
88
include = [
9-
{ path = "python_sdk/client/*" },
10-
{ path = "python_sdk/client/**/*" }
9+
{ path = "openapi.json", format=["sdist", "wheel"] },
10+
{ path = "apicurioregistrysdk/client/**/*", format=["sdist", "wheel"] },
11+
]
12+
exclude = [
13+
{ path = "apicurioregistrysdk/__pycache__", format=["sdist", "wheel"] },
1114
]
1215
license = "Apache 2.0"
1316
homepage = "https://github.com/apicurio/apicurio-registry"
1417
repository = "https://github.com/apicurio/apicurio-registry"
1518
keywords = ["apicurio", "registry"]
1619

1720
[tool.poetry.dependencies]
18-
python = "^3.11"
21+
python = "^3.9"
1922
microsoft-kiota-abstractions = "^0.5.1"
2023
microsoft-kiota-http = "^0.4.1"
2124
microsoft-kiota-serialization-json = "^0.3.2"
@@ -39,7 +42,7 @@ generate-setup-file = false
3942
script = "kiota-gen.py"
4043

4144
[tool.pytest.ini_options]
42-
pythonpath = [ "python_sdk" ]
45+
pythonpath = [ "apicurioregistrysdk" ]
4346

4447
[tool.black]
4548
extend-exclude = 'client'

python-sdk/tests/basic_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
AnonymousAuthenticationProvider,
1010
)
1111
from kiota_http.httpx_request_adapter import HttpxRequestAdapter
12-
from client.registry_client import RegistryClient
13-
from client.models.artifact_content import ArtifactContent
12+
from apicurioregistrysdk.client.registry_client import RegistryClient
13+
from apicurioregistrysdk.client.models.artifact_content import ArtifactContent
1414

1515
REGISTRY_HOST = "localhost"
1616
REGISTRY_PORT = 8080

0 commit comments

Comments
 (0)