본문 바로가기
반응형

Programming10

[Python] Requests로 curl 명령어 API 호출하기 API를 호출할 때 curl 명령어가 많이 사용되지만, Python 스크립트 안에서 API를 호출해야 할 때는 requests 라이브러리를 사용하면 코드의 가독성과 재사용성이 훨씬 높아집니다. 오늘은 curl 명령어를 Python requests로 바꾸는 방법에 대해 알아보겠습니다.  1. curl  명령어의 기본 구조curl은 데이터를 전송하고 수신하기 위한 강력한 명령줄 도구로, API 호출에서 자주 사용됩니다.POST 요청을 보내기 위한 일반적인 curl 명령어는 다음과 같습니다:curl -X POST "https://api.example.com/data" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API.. 2024. 11. 5.
[git] Linux - access token 저장해두고 쓰기! 매번 GitHub 인증하기 번거로운데, git credential 기능을 이용하면 인증 정보를 저장해두고 사용 가능함. git clone 토큰 인증 한방 명령어. 일단 아래 코드로 git clone과 토큰 인증을 한번에 처리할 수 있다. $ git clone https://:@ git clone https://:@ 이제 Credential Helper를 이용해 이 토큰 정보를 저장해두고 사용하면 매번 인증을 안해도 됨!  - Credential로 토큰 정보를 반영구 저장 하는 방식-git config --unset credential.helper [이 과정의 경우 기존에 세팅된 credential.helper 데이터를 해제할 때만 사용한다.]git config credential.helper store .. 2024. 8. 8.
[Error] nohup 안됨 - MPIrun 리눅스 Triton Server에서 nohup으로 모델을 띄워놨는데, VScode 창을 닫으면 (종료하면) 계속 모델이 죽는 문제가 발생. nohup이 자꾸 안되서... 이것저것 시도해봤는데 결국 아래와 같이 해결했다.  전체 스크립트를 괄호로 감싸면 된다!(CUDA_VISIBLE_DEVICES=0 nohup mpirun -n 1 blahblah &) https://stackoverflow.com/questions/48296285/nohup-does-not-work-mpirun  nohup "does not work" MPIrunI am trying to use the "nohup" command to avoid killing a background process when exiting the termi.. 2024. 6. 4.
[Error] 허깅페이스 lfs 모델 다운로드 에러 : connectionerror httpsconnectionpool(host='cdn-lfs-us-1.huggingface.co' port=443) Orion-14B 모델 성능이 LLaMA2 13B 보다 좋다길래, inference test를 해보려고 했다. https://huggingface.co/OrionStarAI/Orion-14B-Base OrionStarAI/Orion-14B-Base · Hugging Face Orion-14B Table of Contents 1. Model Introduction Orion-14B series models are open-source multilingual large language models trained from scratch by OrionStarAI. The base model is trained on 2.5T multilingual corpus, including Chinese, English,.. 2024. 4. 2.
반응형