MakiAi commited on
Commit
08c4577
1 Parent(s): 9575e74

refactor: アプリケーション構造の改善

Browse files

- app.py を pic_to_header ディレクトリに移動
- インポート文の修正
- README.md の更新

これにより、モジュールのインポート問題が解決され、アプリケーションの構造がより整理されました。

README.md CHANGED
@@ -28,7 +28,7 @@ pip install -r requirements.txt
28
  1. Streamlitアプリケーションを起動します:
29
 
30
  ```
31
- streamlit run web_app/app.py
32
  ```
33
 
34
  2. ブラウザで表示されるURLにアクセスします。
@@ -42,7 +42,7 @@ streamlit run web_app/app.py
42
  ## 開発
43
 
44
  - `pic_to_header/core.py`: 画像処理の主要な機能を含みます。
45
- - `web_app/app.py`: Streamlitを使用したWebインターフェースを提供します。
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 sys
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