Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 |
Tags
- 날짜
- urllib
- ubuntu
- MS-SQL
- PyQt
- flutter
- port
- tensorflow
- PyQt5
- mssql
- PER
- 다이어트
- 유니티
- 리눅스
- GIT
- ASP
- 함수
- python
- Unity
- node.js
- IOS
- MySQL
- sqlite
- 맛집
- swift
- pandas
- Linux
- javascript
- 라즈베리파이
- Excel
Archives
목록2025/09 (1)
아미(아름다운미소)
Json
import requestsimport pandas as pdurls = [ "https://jsonplaceholder.typicode.com/todos/1", "https://jsonplaceholder.typicode.com/todos/2", "https://jsonplaceholder.typicode.com/todos/3"]results = []for url in urls: resp = requests.get(url) if resp.status_code == 200: data = resp.json() # JSON → dict results.append(data) # dict 누적# dict 리스트 → DataFramedf = p..
카테고리 없음
2025. 9. 29. 10:10