From 412c1bf066d1ebd216330712f369425975a5f030 Mon Sep 17 00:00:00 2001 From: James Carter Date: Wed, 28 Jun 2023 10:26:23 -0400 Subject: [PATCH] Adjust README for new module name (#16) Update documentation following renaming of module --- README.md | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3fb5094..f35cbd8 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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') diff --git a/pyproject.toml b/pyproject.toml index c956d31..86327c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iracing-client" -version = "0.1.2a0" +version = "0.1.2a1" description = "" authors = ["James Carter "] readme = "README.md"