Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"submatrices",
"submatrix",
"TESTSTEP",
"valuematrix"
"valuematrix",
"webfinger"
]
}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Please read and follow our [Code of Conduct](CODE_OF_CONDUCT.md) in all interact
## Development Setup Details

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

To install all dev tools:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ and [pandas DataFrames](https://pandas.pydata.org/).
1. Install ODSBox: `pip install odsbox`
2. Connect to an ASAM ODS server:
```python
from odsbox.con_i import ConI
from odsbox import ConI

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

## Documentation
Expand Down
Loading
Loading