From 40da130066f719de902b7cd8605344c221ad4f01 Mon Sep 17 00:00:00 2001 From: Salad Dais Date: Wed, 13 Dec 2023 17:57:48 +0000 Subject: [PATCH] Update docs related to client --- .github/workflows/pytest.yml | 8 +++++++- README.md | 8 ++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 9d0d99a..d4c01c2 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -1,6 +1,12 @@ name: Run Python Tests -on: [push, pull_request] +on: + push: + paths-ignore: + - '*.md' + pull_request: + paths-ignore: + - '*.md' jobs: build: diff --git a/README.md b/README.md index 3f90d66..4da8ca4 100644 --- a/README.md +++ b/README.md @@ -402,9 +402,13 @@ above is your only option. ### Should I use this library to make an SL client in Python? -No. If you just want to write a client in Python, you should instead look at using +Probably not. If you just want to write a client in Python, you should instead look at using [libremetaverse](https://github.com/cinderblocks/libremetaverse/) via pythonnet. -I removed the client-related code inherited from PyOGP because libremetaverse's was simply better. +I removed the client-related code inherited from PyOGP because libremetaverse's was simply better +for general use. also looks like a good, modern wrapper if you prefer TypeScript. + +There is, however, a very low-level `HippoClient` class provided for testing, but it's unlikely +to be what you want for writing a general-purpose bot.