본문 바로가기

반응형
SMALL

Programming

(319)
Google Colaboratory https://colab.research.google.com/?hl=ko# Google Colaboratory colab.research.google.com
[Apache Kafka] 카프카란 무엇인가? https://velog.io/@holicme7/Apache-Kafka-%EC%B9%B4%ED%94%84%EC%B9%B4%EB%9E%80-%EB%AC%B4%EC%97%87%EC%9D%B8%EA%B0%80 [Apache Kafka] 카프카란 무엇인가? 카프카, 데이터 플랫폼의 최강자 책을 공부하며 쓴 정리 글 입니다.카프카(Kafka)는 파이프라인, 스트리밍 분석, 데이터 통합 및 미션 크리티컬 애플리케이션을 위해 설계된 고성능 분산 이벤트 velog.io
AB180 엔지니어링 베이스 https://engineering.ab180.co/ AB180 엔지니어링 베이스 | 기술블로그 에어브릿지를 만드는 개발자들의 경험과 기록을 꾸준히 기록하는 공간입니다 engineering.ab180.co
Spring Boot, OpenAPI3, and OAuth2 https://codersite.dev/spring-boot-oauth2/ Spring Boot, OpenAPI3, and OAuth2 OAuth is an authorization framework many companies use to secure access to its protected resources. codersite.dev
서말[생활코딩] https://seomal.com/map/1 Seomal - 서말 seomal.com
UnsupportedOperation : not readable https://doctorson0309.tistory.com/439 7. UnsupportedOperation : not readable 파이썬 프로그램을 실행하던 도중 아래와 같은 에러에 직면하였습니다. 에러명 UnsupportedOperation : not readable 해결방법 r+ 모드로 옵션을 변경합니다. 파일을 여는 것(open)과 관련된 함수를 찾아서, doctorson0309.tistory.com file = open('miss.txt', 'r', encoding='utf8')
[Python] 파이썬 파일 입출력(파일 생성, 읽기, 쓰기, 이어쓰기) https://coding-factory.tistory.com/995 [Python] 파이썬 파일 입출력(파일 생성, 읽기, 쓰기, 이어쓰기) 총정리 프로그래밍에서 유의미한 데이터가 생성되었다면 이것을 어딘가에 기록해두어야 합니다. DB를 사용하면 가장 좋겠지만 간단한 데이터들은 DB를 사용하지 않고 파일 형태(ex : txt 파일)로 어딘가 coding-factory.tistory.com
API를 활용하여 티스토리 글쓰기 import requests access_token = '' tistoryUrl = "https://www.tistory.com/apis/post/write?" parameters = { 'access_token': access_token, 'blogName': 'berea', 'title': '포기란 없다!', 'content': "포기란 없다!\nDon't give up!", 'visibility': '1', ## 아래쪽에 방법에 대하여 설명예정!! 'category': '', 'tag': 'english, liveacademy, 영어회화, 영어운동', 'acceptComment': '1' } response = requests.post(tistoryUrl, params=parameters) prin..
티스토리 API - 카테고리 목록 가져오기 import requests appid = "" access_token = "" callback_url = "" blogName = "" def list_of_Category(): url = "https://www.tistory.com/apis/category/list" params = { 'access_token': access_token, 'output': 'json', # json, xml 두 가지 형식 지원 'blogName': blogName # ().tistory.com 또는 블로그 주소 전체 } res = requests.get(url, params=params) if res.status_code == 200: res_json = res.json() print(res_json) if __na..
Python Tutorials https://thepythoncode.com/ The Python Code - Python Programming Tutorials, Programming Tools & Recipes Practical Python PDF Processing EBook A practical guide that enables developers to unlock Python's full potential in manipulating and processing PDFs. This book covers essential tasks like reading, splitting, merging, and data extraction, along with advanc thepythoncode.com

반응형
LIST