Skip to content

Commit

Permalink
Merge pull request #7 from eltociear/add_ja-readme
Browse files Browse the repository at this point in the history
Add Japanese README
  • Loading branch information
austin2035 authored Mar 31, 2024
2 parents 795f154 + 2ca772d commit 8810a71
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[简体中文](README_ZH.md)
[简体中文](README_ZH.md) | [日本語](README_JA.md)


# Unofficial Suno API
Expand Down
53 changes: 53 additions & 0 deletions README_JA.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# 非公式 Suno API

Python と FastAPI をベースにした非公式の Suno API です。現在、曲や歌詞などの生成に対応しています。
トークンのメンテナンスと keep-alive 機能が組み込まれているので、トークンの期限切れを心配する必要はありません。

### 特徴

- 自動トークンメンテナンスと keep-alive
- 完全非同期、高速、将来の拡張に対応
- シンプルなコード、メンテナンスが容易、二次開発に便利


### 使用方法

#### 設定

`.env.example` ファイルを編集して `.env` にリネームし、session_id と cookie を記入する。

これらは最初にブラウザから取得され、後で自動的に keep-alive されます。

![cookie](./images/cover.png)


#### 実行

依存関係をインストールする

```bash
pip3 install -r requirements.txt
```

この部分については、各自で FastAPI ドキュメントを参照してください。
```bash
uvicorn main:app
```

#### Docker

```bash
docker compose build && docker compose up
```

#### ドキュメント

サービスをセットアップしたら、/docs にアクセスしてください

![docs](./images/docs.png)


#### 連絡する


<img src="./images/wechat.jpg" width="382px" height="511px" />

0 comments on commit 8810a71

Please sign in to comment.