diff --git a/Makefile b/Makefile index b2f8040..b271998 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,8 @@ -d: - pdoc -o docs --config sort_identifiers=False --template-dir ./docs/templates --force push_to_3yourmind +documentation: + rm -R docs + mkdir docs + pdoc -o docs --html --config sort_identifiers=False --force push_to_3yourmind + mv docs/push_to_3yourmind/* docs/ + rmdir docs/push_to_3yourmind diff --git a/README.md b/README.md index cfe4c99..0080a19 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,7 @@ A Python SDK library to work with 3YOURMIND's platform API. It enables you to ma information, push 3D Files, manipulate baskets, lines, get pricing information, place Orders and Catalog Items. -# Usage Guide - -[link](./docs/push_to_3yourmind/index.md) +# Quickstart ## Requirements @@ -13,8 +11,6 @@ Python >= 3.6 ## Create access token for your user -All operations - Open `/admin/auth/user/`, and click "Create token" in the user list. ## Installation @@ -45,9 +41,9 @@ basket = client.user_panel.get_basket(basket_id=6) ``` -# Library Development Guide +# Usage Guide -[link](./doc/development.md) +[link](https://3yourmind.github.io/push-to-3yourmind/) # @