Skip to content

Commit 140fbaf

Browse files
committed
added the 시군구별 평당 가격변화 notebook
1 parent 9b2c187 commit 140fbaf

File tree

3 files changed

+483
-5
lines changed

3 files changed

+483
-5
lines changed

realestate/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def main():
169169
if "ex" == result_code: # already querying
170170
continue
171171
elif '00' != result_code:
172-
print("today is up to limit")
172+
print("today is up to limit", result_code, response_msg)
173173
is_limit = True
174174
break
175175
else:

realestate/road_code_extract.ipynb realestate/notebook/road_code_extract.ipynb

+13-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"outputs": [],
1212
"source": [
13-
"f_in = open('road_code_total.txt', 'r')\n",
13+
"f_in = open('../road_code_total.txt', 'r')\n",
1414
"lines = [x[:-1] for x in f_in.readlines()]"
1515
]
1616
},
@@ -79,7 +79,7 @@
7979
},
8080
"outputs": [],
8181
"source": [
82-
"f_out = open('road_codes.csv', \"w\")\n",
82+
"f_out = open('../road_codes.csv', \"w\")\n",
8383
"for result in results:\n",
8484
" f_out.write(\",\".join(result) + \"\\n\")\n",
8585
"f_out.close()"
@@ -98,7 +98,7 @@
9898
"metadata": {},
9999
"outputs": [],
100100
"source": [
101-
"csv_file_in = open(\"road_codes.csv\", \"r\")\n",
101+
"csv_file_in = open(\"../road_codes.csv\", \"r\")\n",
102102
"lines = [x[:-1] for x in csv_file_in.readlines()]"
103103
]
104104
},
@@ -185,8 +185,17 @@
185185
"nbconvert_exporter": "python",
186186
"pygments_lexer": "ipython3",
187187
"version": "3.7.4"
188+
},
189+
"pycharm": {
190+
"stem_cell": {
191+
"cell_type": "raw",
192+
"source": [],
193+
"metadata": {
194+
"collapsed": false
195+
}
196+
}
188197
}
189198
},
190199
"nbformat": 4,
191200
"nbformat_minor": 1
192-
}
201+
}

0 commit comments

Comments
 (0)