diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 9d0d99ae..d4c01c2b 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 3f90d66d..4da8ca42 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.