Skip to content

Commit

Permalink
add version to docs install samples and fix documentation build error
Browse files Browse the repository at this point in the history
  • Loading branch information
treeben77 committed Sep 25, 2024
1 parent ad04e01 commit c5ae05a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
[![DevForum Post](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fdevforum.roproxy.com%2Ft%2F1991959.json&query=%24.like_count&suffix=%20Likes&style=for-the-badge&logo=robloxstudio&logoColor=white&label=DevForum%20Post&labelColor=%23009fff&color=%23353535)](https://devforum.roblox.com/t/1991959)
[![Downloads](https://img.shields.io/pypi/dm/rblx-open-cloud?style=for-the-badge&logo=pypi&logoColor=white&label=PyPi%20Downloads&labelColor=%23006dad&color=%23353535)](https://pypi.org/project/rblx-open-cloud)

rblx-open-cloud is a Python API wrapper for [Roblox Open Cloud](https://create.roblox.com/docs/open-cloud/index). It supports all experience and creator APIs, OAuth2, and incoming webhooks.
rblx-open-cloud is a Python API wrapper for [Roblox Open Cloud](https://create.roblox.com/docs/cloud/open-cloud).

### Key Features
- Support for most endpoints, including the OAuth2 flow and authentication.
- Allows both syncronous and asyncronous usage.
- Logic for operation polling and internal error retrying.

**Documentation: https://rblx-open-cloud.readthedocs.io**

Expand All @@ -16,7 +21,7 @@ rblx-open-cloud is a Python API wrapper for [Roblox Open Cloud](https://create.r

```sh
# Stable (PyPi, recommended)
pip install rblx-open-cloud
pip install rblx-open-cloud~=2.0

# Development (GitHub)
pip install "rblx-open-cloud @ git+https://github.com/treeben77/rblx-open-cloud@v2"
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ To install rblx-open-cloud from PyPI package, you can install it from pip:

=== "Windows"
```console
python -m pip install rblx-open-cloud --upgrade
python -m pip install rblx-open-cloud~=2.0 --upgrade
```

=== "Linux"
```console
python3 -m pip install rblx-open-cloud --upgrade
python3 -m pip install rblx-open-cloud~=2.0 --upgrade
```

## Getting Started
Expand Down
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ mkdocs-material-extensions==1.3
mkdocs-git-committers-plugin-2==2.3
mkdocstrings==0.23.0
mkdocstrings-python==1.7.1
mkdocs-git-revision-date-localized-plugin==1.2.5
mkdocs-git-revision-date-localized-plugin==1.2.5
griffe==0.48.0

0 comments on commit c5ae05a

Please sign in to comment.