Skip to content

Commit 67708b5

Browse files
feat: add ConIFactory to support oidc and m2m workflows (#236)
* fix: bump pytest-cov from 7.0.0 to 7.1.0 (#233) Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 7.0.0 to 7.1.0. - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](pytest-dev/pytest-cov@v7.0.0...v7.1.0) --- updated-dependencies: - dependency-name: pytest-cov dependency-version: 7.1.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: bump mypy from 1.19.1 to 1.20.0 (#234) Bumps [mypy](https://github.com/python/mypy) from 1.19.1 to 1.20.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](python/mypy@v1.19.1...v1.20.0) --- updated-dependencies: - dependency-name: mypy dependency-version: 1.20.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * feat: add ConIFactory (#235) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2c4e3ec commit 67708b5

13 files changed

Lines changed: 1516 additions & 12 deletions

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
"submatrices",
8181
"submatrix",
8282
"TESTSTEP",
83-
"valuematrix"
83+
"valuematrix",
84+
"webfinger"
8485
]
8586
}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Please read and follow our [Code of Conduct](CODE_OF_CONDUCT.md) in all interact
6161
## Development Setup Details
6262

6363
- **Python Version**: >= 3.10.12
64-
- **Dependencies**: protobuf, requests, pandas (core); grpcio (for exd-data)
64+
- **Dependencies**: protobuf, requests, pandas (core); grpcio (for exd-data); pip-system-certs, requests-oauthlib (for oidc)
6565
- **Test Dependencies**: pytest, black, flake8, bandit, pylint, pre-commit, etc.
6666

6767
To install all dev tools:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ and [pandas DataFrames](https://pandas.pydata.org/).
2424
1. Install ODSBox: `pip install odsbox`
2525
2. Connect to an ASAM ODS server:
2626
```python
27-
from odsbox.con_i import ConI
27+
from odsbox import ConI
2828

2929
with ConI(url="https://MY_SERVER/api", auth=("USERNAME", "PASSWORD")) as con_i:
3030
measurements = con_i.query(
@@ -34,7 +34,7 @@ and [pandas DataFrames](https://pandas.pydata.org/).
3434
"$options": {"$rowlimit": 50},
3535
}
3636
)
37-
print(measurements) # print pandas DataFrame
37+
print(measurements) # print pandas DataFrame with column "name" and "id"
3838
```
3939

4040
## Documentation

0 commit comments

Comments
 (0)