Skip to content

Commit

Permalink
prepare release for v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dasfmi committed Jan 26, 2023
1 parent b4ff291 commit 558feac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ client = axiom.Client()
time = datetime.utcnow() - timedelta(hours=1)
time_formatted = rfc3339.format(time)

client.datasets.ingest_events(
client.ingest_events(
dataset="my-dataset",
events=[
{"foo": "bar", "_time": time_formatted},
{"bar": "baz", "_time": time_formatted},
])
client.datasets.query(r"['my-dataset'] | where foo == 'bar' | limit 100")
client.query(r"['my-dataset'] | where foo == 'bar' | limit 100")
```

for more examples, check out the [examples](examples) directory.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "axiom-py"
version = "0.1.0-beta.5"
version = "0.1.0"
description = "Axiom API Python bindings."
authors = ["Axiom, Inc."]
license = "MIT"
Expand Down

0 comments on commit 558feac

Please sign in to comment.