-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from eltociear/add_ja-readme
Add Japanese README
- Loading branch information
Showing
2 changed files
with
54 additions
and
1 deletion.
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,4 +1,4 @@ | ||
[简体中文](README_ZH.md) | ||
[简体中文](README_ZH.md) | [日本語](README_JA.md) | ||
|
||
|
||
# Unofficial Suno API | ||
|
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,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" /> |