Diff
checker
テキスト
テキスト
画像
ドキュメント
Excel
フォルダ
Legal
Enterprise
デスクトップ
料金
ログイン
Diffchecker デスクトップのダウンロード
テキスト比較
2 つのテキスト ファイルの違いを見つける
ツール
履歴
ライブエディター
未変更行を折りたたむ
折り返しなし
レイアウト
分割
統合
比較精度
スマート
単語
文字
シンタックスハイライト
構文を選択
無視
テキスト変換
最初の差分へ移動
入力を編集
Diffchecker Desktop
Diffcheckerを実行する最も安全な方法。Diffchecker Desktopアプリを入手:あなたの差分はコンピューターから出ることはありません!
Desktopを入手
read_jira_issues.py
作成日
5 年前
差分は期限切れになりません
クリア
エクスポート
共有
説明
9 削除
行
合計
削除
文字
合計
削除
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
27 行
すべてコピー
14 追加
行
合計
追加
文字
合計
追加
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
31 行
すべてコピー
import pandas as pd
import pandas as pd
import os
import os
コピー
コピー済み
コピー
コピー済み
path = os.getcwd()+'\Ph3_Charts'+'\\'
print(path)
from os import listdir
from os import listdir
from os.path import isfile, join
from os.path import isfile, join
コピー
コピー済み
コピー
コピー済み
days_range = [f for f in listdir(
path
) if isfile(join(
path
, f))]
# Get CWD
CWD = os.getcwd()
# Join CWD with `Ph3_Charts` folder
PH3_CHART_PATH = os.path.join(CWD, 'Ph3_Charts')
print(PH3_CHART_PATH)
days_range = [f for f in listdir(
PH3_CHART_PATH
) if isfile(join(
PH3_CHART_PATH
, f))]
dataframes = []
dataframes = []
count = 0
count = 0
for i in days_range:
for i in days_range:
try:
try:
print(i,count)
print(i,count)
コピー
コピー済み
コピー
コピー済み
dataframes.append(pd.read_excel(
path
+i, sheet_name = "Issues Jira", index_col=0))
dataframes.append(pd.read_excel(
PH3_CHART_PATH
+i, sheet_name = "Issues Jira", index_col=0))
count += 1
count += 1
コピー
コピー済み
コピー
コピー済み
except
:
except
Exception as e: # catch *all* exceptions
pass
print(e) # print it out
保存された差分
原文
ファイルを開く
import pandas as pd import os path = os.getcwd()+'\Ph3_Charts'+'\\' print(path) from os import listdir from os.path import isfile, join days_range = [f for f in listdir(path) if isfile(join(path, f))] dataframes = [] count = 0 for i in days_range: try: print(i,count) dataframes.append(pd.read_excel(path+i, sheet_name = "Issues Jira", index_col=0)) count += 1 except: pass
変更されたテキスト
ファイルを開く
import pandas as pd import os from os import listdir from os.path import isfile, join # Get CWD CWD = os.getcwd() # Join CWD with `Ph3_Charts` folder PH3_CHART_PATH = os.path.join(CWD, 'Ph3_Charts') print(PH3_CHART_PATH) days_range = [f for f in listdir(PH3_CHART_PATH) if isfile(join(PH3_CHART_PATH, f))] dataframes = [] count = 0 for i in days_range: try: print(i,count) dataframes.append(pd.read_excel(PH3_CHART_PATH+i, sheet_name = "Issues Jira", index_col=0)) count += 1 except Exception as e: # catch *all* exceptions print(e) # print it out
違いを見つける