Skip to content

Commit

Permalink
Adjust README for new module name (#16)
Browse files Browse the repository at this point in the history
Update documentation following renaming of module
  • Loading branch information
tegataiprime authored Jun 28, 2023
1 parent 0aed209 commit 412c1bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[![Release](https://github.com/tegataiprime/iracing-client/actions/workflows/release.yaml/badge.svg)](https://github.com/tegataiprime/iracing-client/actions/workflows/release.yaml)

# iracing-data-client
# iracing-client
A Python Client Library for working with iRacing Data API.

This library provides communiction & error handling with the iRacing Data API.
Expand All @@ -17,10 +17,10 @@ This library provides communiction & error handling with the iRacing Data API.
JSON formatted data returned by iRacing is deserialized as either a `list` or `dict` using [`json.loads`](https://docs.python.org/3/library/json.html)

```python
import iracing_data_client.auth as auth
from iracing_data_client.data.constants import Constants
from iracing_data_client.data.member import Member
from iracing_data_client.data.league import League
import iracing_client.auth as auth
from iracing_client.data.constants import Constants
from iracing_client.data.member import Member
from iracing_client.data.league import League

# Authenticate with iRacing
iracing_username = os.environ.ge('IRACING_USERNAME')
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 = "iracing-client"
version = "0.1.2a0"
version = "0.1.2a1"
description = ""
authors = ["James Carter <tegatai@gmail.com>"]
readme = "README.md"
Expand Down

0 comments on commit 412c1bf

Please sign in to comment.