File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed
Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ GridDB Python Client
22
33## Overview
44
5- GridDB Python Client has been renewed.
5+ GridDB Python Client has been renewed in V5.8 .
66
77New GridDB Python Client is developed using GridDB Java API(Java Client), [ JPype] ( https://github.com/jpype-project/jpype ) and [ Apache Arrow] ( https://arrow.apache.org/ ) .
88
@@ -13,8 +13,8 @@ Building of the library and execution of the sample programs have been checked i
1313 OS: Ubuntu 22.04 (x64) / RockyLinux 9.4 (x64) / Windows 11 (x64) / MacOS 12 (x86_64)
1414 Python: 3.12
1515 Java: 8
16- GridDB Java API: V5.8 CE
17- GridDB server: V5.8 CE, Ubuntu 22.04 (x64)
16+ GridDB Java API: V5.9 CE
17+ GridDB server: V5.9 CE, Ubuntu 22.04 (x64)
1818
1919## QuickStart
2020
@@ -52,7 +52,7 @@ $ cd sample
52521 . Download GridDB Java API on sample folder
5353
5454``` sh
55- $ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.8 .0/gridstore-5.8 .0.jar
55+ $ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.9 .0/gridstore-5.9 .0.jar
5656```
5757
58582 . Place GridDB JavaAPI Adapter for Apache Arrow on sample folder
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ GridDB Pythonクライアント
22
33## 概要
44
5- GridDB Pythonクライアントをリニューアルしました。
5+ V5.8にてGridDB Pythonクライアントをリニューアルしました。
66
77これまではGridDB C API(Cクライアント)経由でサーバへの操作を提供していましたが、
88様々な機能強化のために、
@@ -18,8 +18,8 @@ GridDB Pythonクライアントをリニューアルしました。
1818 OS: Ubuntu 22.04 (x64) / RockyLinux 9.4 (x64) / Windows 11 (x64) / MacOS 12 (x86_64)
1919 Python: 3.12
2020 Java: 8
21- GridDB Java API: V5.8 CE
22- GridDB Server: V5.8 CE, Ubuntu 22.04 (x64)
21+ GridDB Java API: V5.9 CE
22+ GridDB Server: V5.9 CE, Ubuntu 22.04 (x64)
2323
2424## クイックスタート
2525
@@ -55,7 +55,7 @@ $ cd sample
55551 . sampleフォルダ上にGridDB Java APIのダウンロード
5656
5757``` sh
58- $ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.8 .0/gridstore-5.8 .0.jar
58+ $ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.9 .0/gridstore-5.9 .0.jar
5959```
6060
61612 . sampleフォルダ上にGridDB JavaAPI Adapter for Apache Arrowの配置
Original file line number Diff line number Diff line change 44
55 <groupId >com.github.griddb</groupId >
66 <artifactId >gridstore-arrow</artifactId >
7- <version >5.8 .0</version >
7+ <version >5.9 .0</version >
88 <packaging >jar</packaging >
99
1010 <name >GridDB JavaAPI Adapter for Apache Arrow</name >
1313 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
1414 <arrow .version>17.0.0</arrow .version>
1515 <slf4j .version>1.7.36</slf4j .version>
16- <griddb .version>5.8 .0</griddb .version>
16+ <griddb .version>5.9 .0</griddb .version>
1717 <maven .compiler.source>1.8</maven .compiler.source>
1818 <maven .compiler.target>1.8</maven .compiler.target>
1919 </properties >
Original file line number Diff line number Diff line change 11[project ]
22name = " griddb_python"
3- version = " 5.8 .0"
3+ version = " 5.9 .0"
44authors = [
55 { name =" Toshiba Digital Solutions Corporation" , email =" contact@griddb.org" },
66 ]
Original file line number Diff line number Diff line change 7474from com .toshiba .mwcloud .gs import TimeUnit as JTimeUnit
7575from com .toshiba .mwcloud .gs import FetchOption as JFetchOption
7676from com .toshiba .mwcloud .gs import Geometry as JGeometry
77- CLIENT_VERSION = "Python Client for GridDB V5.8 "
77+ CLIENT_VERSION = "Python Client for GridDB V5.9 "
7878
7979import warnings
8080warnings .filterwarnings (action = "ignore" , message = r"datetime.datetime.utcfromtimestamp" )
You can’t perform that action at this time.
0 commit comments