-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: match discord-ext-lava docs setup
- Loading branch information
Showing
12 changed files
with
162 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
version: 2 | ||
formats: | ||
|
||
build: | ||
os: ubuntu-20.04 | ||
tools: | ||
python: "3.10" | ||
jobs: | ||
post_install: | ||
- pip install poetry | ||
- poetry config virtualenvs.create false | ||
- poetry install --with docs | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
python: | ||
install: | ||
- method: pip | ||
path: . | ||
extra_requirements: | ||
- docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,22 @@ | ||
.. py:currentmodule:: spotipy | ||
Welcome to spoti.py | ||
=================== | ||
spoti.py is an async python wrapper for the Spotify Web API. | ||
|
||
Installation | ||
------------ | ||
From PyPI | ||
|
||
.. tab:: Linux | ||
|
||
.. code:: bash | ||
python3 -m pip install -U spoti.py | ||
.. tab:: Windows | ||
|
||
.. code:: bash | ||
An async wrapper for the Spotify Web API. | ||
|
||
py -3 -m pip install -U spoti.py | ||
|
||
From GitHub: | ||
|
||
.. tab:: Linux | ||
|
||
.. code:: bash | ||
git clone https://github.com/Axelware/spoti.py | ||
cd spotipy | ||
python3 -m pip install . | ||
.. tab:: Windows | ||
.. toctree:: | ||
:hidden: | ||
:caption: Introduction | ||
|
||
.. code:: bash | ||
pages/installation | ||
pages/contribution | ||
|
||
git clone https://github.com/Axelware/spoti.py | ||
cd spotipy | ||
py -3 -m pip install . | ||
|
||
Contents | ||
-------- | ||
.. toctree:: | ||
pages/api | ||
pages/examples | ||
:hidden: | ||
:caption: API | ||
|
||
pages/usage | ||
pages/reference |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Contribution Guide | ||
================== |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
Installation | ||
============ | ||
|
||
Stable | ||
------ | ||
.. tab:: Latest | ||
|
||
.. code-block:: shell | ||
pip install -U spoti-py | ||
.. tab:: Specific Version | ||
|
||
.. code-block:: shell | ||
pip install -U spoti-py==0.2.0 | ||
.. tab:: Force Reinstall | ||
|
||
.. code-block:: shell | ||
pip install --force-reinstall spoti-py | ||
Development | ||
----------- | ||
.. tab:: Main | ||
|
||
.. code-block:: shell | ||
pip install -U git+https://github.com/Axelware/spoti-py.git@main | ||
.. tab:: Branch | ||
|
||
.. code-block:: shell | ||
pip install -U git+https://github.com/Axelware/[email protected] | ||
.. tab:: Tag | ||
|
||
.. code-block:: shell | ||
pip install -U git+https://github.com/Axelware/[email protected] | ||
.. tab:: Commit | ||
|
||
.. code-block:: shell | ||
pip install -U git+https://github.com/Axelware/spoti-py.git@d519593 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.. py:currentmodule:: spotipy | ||
Reference | ||
========= | ||
|
||
Clients | ||
------- | ||
placeholder text | ||
|
||
Client | ||
~~~~~~ | ||
.. autoclass:: Client | ||
:members: | ||
|
||
HTTPClient | ||
~~~~~~~~~~ | ||
.. autoclass:: HTTPClient | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.. py:currentmodule:: spotipy | ||
Usage | ||
===== |
Oops, something went wrong.