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
- mssql
- tensorflow
- ASP
- GIT
- Linux
- swift
- ubuntu
- pandas
- javascript
- 유니티
- 리눅스
- Excel
- Unity
- PyQt5
- node.js
- 함수
- MySQL
- IOS
- PyQt
- 날짜
- 라즈베리파이
- flutter
- python
- 맛집
- sqlite
- urllib
- PER
- 다이어트
- port
- MS-SQL
Archives
목록2025/09/29 (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