Skip to content

Commit

Permalink
chore: makefile to generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fevral13 committed Apr 7, 2022
1 parent 32f3fff commit d2f3523
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,14 @@ 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

Python >= 3.6

## Create access token for your user

All operations

Open `/admin/auth/user/`, and click "Create token" in the user list.

## Installation
Expand Down Expand Up @@ -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/)

# @

Expand Down

0 comments on commit d2f3523

Please sign in to comment.