일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- file
- pandas
- PostgreSQL
- docker
- DB
- judge
- GitLab
- evaluation
- AI
- Laravel
- Database
- list
- LLM
- pytorch
- format
- git
- Linux
- Paper
- Package
- Flask
- Converting
- Mac
- Container
- enV
- numpy
- KAKAO
- TORCH
- Python
- Windows
- CUDA
Archives
- Today
- Total
목록KAKAO (2)
Daily Develope
[Linux] CentOS repository 설정
의의가까운 지역의 repository 저장소 사용 (속도)local/폐쇄망의 repository 저장소 사용 (보안)절차repo. 저장소 주소 확인 (아래 예시에서는 카카오 repo. 저장소 활용)repo. 설정파일 수정 (vi /etc/yum.repo.d/CentOS-Base.repo)[base]name=CentOS-$releasever - Basebaseurl=http://mirror.kakao.com/centos/$releasever/os/$basearch/gpgcheck=0gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7#released updates[updates]name=CentOS-$releasever - Updatesbaseurl=http://mi..
OS/Linux
2024. 4. 30. 22:22
[Python] Kakao API 사용예시
ㅇ Vision - Face Detect import requests url = "https://dapi.kakao.com/v2/vision/face/detect" target_file = "target_path.jpeg" files = {'image':open(target_file, 'rb')} header = { 'Authorization': 'KakaoAK 123...' } response = requests.post(url=url, headers=header, files=files) print(response) print(response.text)
Develope/Python
2022. 4. 11. 11:29