A simple WITSML client with utilities.
Project description
Jeng
A simple WITSML client with utilities.
If you encounter any issues, please report them promptly here. Additionally, feel free to request any necessary features here.
Installation
pip install jeng
Getting started
- Jeng should be compatible with Python 3.8 and higher.
- Jeng should work with WITSML data schema v1.3.1.1 and v1.4.1.1.
- Jeng should work the same for both TIME log type and DEPTH log type.
- Log curve info list is not technically required for TIME log type. For DEPTH log type, the index log curve info is required. Thus, log curve info is set to required for
generate.generate_log_query()
to ensure the API stays consistent and not confusing.
- Log curve info list is not technically required for TIME log type. For DEPTH log type, the index log curve info is required. Thus, log curve info is set to required for
- Incompatible package version update:
0.0.6
to0.0.7
: Change fromjeng.client.WitsmlClient
package tojeng.jeng.WitsmlClient
Client
-
To create and connect to WITSML Server:
from jeng import jeng client = jeng.WitsmlClient() # return True if success, else False status = client.connect( url=CONNECTION_URL, username=CONNECTION_USERNAME, password=CONNECTION_PASSWORD, )
-
To call wrapper API (make sure to connect to WTISML Server first):
# send query to WMLS_AddToStore API with open(f"{QUERY_PATH}/query.xml", "r") as query: reply = client.add_to_store( wml_type_in="well", xml_in=query.read(), ) # send query to WMLS_UpdateInStore API with open(f"{QUERY_PATH}/query.xml", "r") as query: reply = client.update_in_store( wml_type_in="well", xml_in=query.read(), ) # send query to WMLS_GetFromStore API with open(f"{QUERY_PATH}/query.xml", "r") as query: reply = client.get_from_store( wml_type_in="well", xml_in=query.read(), return_element="all", ) # send query to WMLS_DeleteFromStore API with open(f"{QUERY_PATH}/query.xml", "r") as query: reply = client.delete_from_store( wml_type_in="well", xml_in=query.read(), ) # string is expected for xml_in and you can # pass string query to all the wrapper API client.add_to_store( wml_type_in="well", xml_in=query_xml_str, )
-
To call other WITSML APIs than provided wrapper APIs (make sure to connect to WTISML Server first):
# send WMLS_GetVersion directly from Jeng client service reply = client.service().WMLS_GetVersion()
Log Query Generator
from jeng import model, generate
# set log basic info
log_basic_info = model.LogBasicInfoModel(
well_uid="WELL_001",
well_name="WELL 001",
wellbore_uid="WELLBORE_001",
wellbore_name="WELLBORE 001",
log_uid="LOG_001",
log_name="LOG 001",
)
# set time log curve info
log_curve_info_list = [
model.LogCurveInfoModel(
uid="TIME",
mnemonic="TIME",
unit="s",
curve_description="Time",
type_log_data="date time",
index_type="date time",
is_index_curve=True,
),
model.LogCurveInfoModel(
uid="HKLA",
mnemonic="HKLA",
unit="klbf",
curve_description="Average Hookload",
type_log_data="double",
),
...
]
# set depth log curve info
log_curve_info_list = [
model.LogCurveInfoModel(
uid="DEPTH",
mnemonic="DEPTH",
unit="m",
curve_description="Depth Index",
type_log_data="double",
index_type="measured depth",
is_index_curve=True,
),
model.LogCurveInfoModel(
uid="HKLA",
mnemonic="HKLA",
unit="klbf",
curve_description="Average Hookload",
type_log_data="double",
),
...
]
...
# generate very basic query (log curve info list is optional)
query_xml = generate.generate_log_query(
log_basic_info=log_basic_info,
)
# generate query (make sure to use mnemonic as column name)
query_xml = generate.generate_log_query(
log_basic_info=log_basic_info,
log_curve_info_list=log_curve_info_time_list,
dataframe=dataframe,
)
# it's possible to generate WMLS_GetFromStore compatible
# query with specific time interval
query_xml = generate.generate_log_query(
log_basic_info=log_basic_info,
log_curve_info_list=log_curve_info_time_list,
log_index=model.LogIndexModel(
start="2020-06-30T17:44:00.000+08:00",
end="2020-06-30T17:45:00.000+08:00",
),
)
# it's possible to generate WMLS_GetFromStore compatible
# query with specific non-time interval
query_xml = generate.generate_log_query(
log_basic_info=log_basic_info,
log_curve_info_list=log_curve_info_depth_list,
log_index=model.LogIndexModel(
start="2575.2",
end="2575.5",
type=model.LogIndexTypeEnum.NON_TIME,
),
)
Log Reply Parser
from jeng import parse
...
# parse WITSML XMLout reply data into dataframe
dataframe = parse.parse_log_into_dataframe(
xml_out=reply["XMLout"],
)
# parse WITSML XMLout reply into model.LogCurveInfoModel
log_curve_info_list = parse.parse_log_into_curve_info(
xml_out=reply["XMLout"],
)
Test
Make sure to have a WITSML server running for the test.
-
Clone the project:
git clone https://github.com/nazebzurati/jeng.git
-
Prepare environment:
# create environment and activate virtualenv env .\env\Scripts\activate # on Windows source .\env\bin\activate # on Mac and Linux # install development dependencies pip install -e .[dev] # bash pip install -e .\[dev\] # zsh
-
Change the source code and test.
# formatting isort . --skip env && black --line-length 120 . # run coverage and pytest coverage run -m pytest -v coverage run -m pytest -m integration -v # test with WITSML server integration coverage run -m pytest -m unit -v # test without WITSML server integration # run static code test coverage xml && sonar-scanner.bat -D"sonar.projectKey=<project-key>" -D"sonar.sources=." -D"sonar.host.url=<host-url>" -D"sonar.login=<project-token>"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
jeng-1.0.0-py3-none-any.whl
(11.0 kB
view details)
File details
Details for the file jeng-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: jeng-1.0.0-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ce905f9e3212e3cd6257dbea627c37d9b6f5ffaa265987af55a5ed36a654553 |
|
MD5 | e8a5e077d2a67727a19a2bbbaf409b92 |
|
BLAKE2b-256 | 06d0efd0a6e15c793ad5ff6df91d691df77caa02ea53319eb771befc67a0addf |