Skip to content

Commit

Permalink
fix: fixed pypi package name for easier import
Browse files Browse the repository at this point in the history
  • Loading branch information
v0nNemizez committed Sep 13, 2024
1 parent 3004119 commit 10b69fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ pip install asyncio-melcloud-lib
To get started with the asyncio-melcloud-lib library, import it into your Python project:

```python
import asynciomelcloudlib
import melcloudlibasyncio
```

Then, create an instance of the `MelCloudClient` class and authenticate with your MelCloud credentials:

```python
client = asynciomelcloudlib.MelCloudClient(username='your_username', password='your_password')
client = melcloudlibasyncio.MelCloudClient(username='your_username', password='your_password')
await client.login()
```

Expand Down Expand Up @@ -79,5 +79,4 @@ For more examples and detailed documentation, please refer to the [official docu
Contributions are welcome! If you have any ideas, suggestions, or bug reports, please open an issue or submit a pull request on the [GitHub repository](https://github.com/v0nNemizez/asyncio-melcloud-lib).

## License:
This project is licensed under the MIT License. See the [LICENSE](https://github.com/v0nNemizez/asyncio-melcloud-lib/blob/main/LICENSE) file for more information.
cd
This project is licensed under the MIT License. See the [LICENSE](https://github.com/v0nNemizez/asyncio-melcloud-lib/blob/main/LICENSE) file for more information.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "asynciomelcloudlib"
version = "1.0.2"
name = "melcloudlibasyncio"
version = "1.0.3"
description = "A async client for interacting with the MELCloud API"
authors = ["Simen Andrè Skogum <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 10b69fa

Please sign in to comment.