Spaces:
Running
Running
refactor: アプリケーション構造の改善
Browse files- app.py を pic_to_header ディレクトリに移動
- インポート文の修正
- README.md の更新
これにより、モジュールのインポート問題が解決され、アプリケーションの構造がより整理されました。
- README.md +2 -2
- {web_app → pic_to_header}/app.py +1 -6
- web_app/__init__.py +0 -0
README.md
CHANGED
@@ -28,7 +28,7 @@ pip install -r requirements.txt
|
|
28 |
1. Streamlitアプリケーションを起動します:
|
29 |
|
30 |
```
|
31 |
-
streamlit run
|
32 |
```
|
33 |
|
34 |
2. ブラウザで表示されるURLにアクセスします。
|
@@ -42,7 +42,7 @@ streamlit run web_app/app.py
|
|
42 |
## 開発
|
43 |
|
44 |
- `pic_to_header/core.py`: 画像処理の主要な機能を含みます。
|
45 |
-
- `
|
46 |
|
47 |
## ライセンス
|
48 |
|
|
|
28 |
1. Streamlitアプリケーションを起動します:
|
29 |
|
30 |
```
|
31 |
+
streamlit run pic_to_header/app.py
|
32 |
```
|
33 |
|
34 |
2. ブラウザで表示されるURLにアクセスします。
|
|
|
42 |
## 開発
|
43 |
|
44 |
- `pic_to_header/core.py`: 画像処理の主要な機能を含みます。
|
45 |
+
- `pic_to_header/app.py`: Streamlitを使用したWebインターフェースを提供します。
|
46 |
|
47 |
## ライセンス
|
48 |
|
{web_app → pic_to_header}/app.py
RENAMED
@@ -1,11 +1,6 @@
|
|
1 |
import streamlit as st
|
2 |
import os
|
3 |
-
import
|
4 |
-
|
5 |
-
# プロジェクトのルートディレクトリをPYTHONPATHに追加
|
6 |
-
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
7 |
-
|
8 |
-
from pic_to_header.core import process_header_image
|
9 |
|
10 |
def main():
|
11 |
st.title("Pic-to-Header")
|
|
|
1 |
import streamlit as st
|
2 |
import os
|
3 |
+
from core import process_header_image
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
def main():
|
6 |
st.title("Pic-to-Header")
|
web_app/__init__.py
DELETED
File without changes
|