일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 발행
- nft
- pagination
- Ai
- CSS
- netfunnel
- React
- Laravel
- miniconda
- chatGPT
- 배포
- NextJS
- jquery
- Setting
- Remix
- 공연티켓
- node
- nginx
- Kaikas
- nodejs
- git
- metamask
- Python
- polygon
- 블록체인
- PM2
- 라라벨
- exceljs
- 회고
- threejs
- Today
- Total
목록python (5)
박주니 개발 정리
1. 트위터 developer 사이트에 접속해서 Free 버전 Get started를 선택합니다. https://developer.x.com/en/products/x-api X API | ProductsUse the X API to analyze, learn from, and interact with posts, Direct Messages, and users. Scale your access to grow, experiment, and innovate.developer.x.com2. 트위터를 가입하고 Developer Portal Projects & Apps를 선택해서 Project를 생성합니다. 3. 해당 Project를 클릭하시고 Authentication Tokens에 Bearer Token 값을..
1. pycountry를 설치합니다. pip install pycountry2. pycountry.py 파일을 생성 후 해당 코드를 넣습니다. import pycountry# 모든 나라 가져오기countries = list(pycountry.countries)# 나라 이름 출력for country in countries: print(country.name)추가설명country.name에서 영문으로 전세계 나라명이 나오는 것을 확인하실 수 있습니다. ♣특정 나라의 정보를 가지고 오는 방법# 특정 국가 정보 가져오기 (예: 대한민국)country = pycountry.countries.get(name="South Korea")print(country.alpha_2) # ISO 3166-1 alpha-..
1. Locust를 설치합니다. pip install locust 2. locustfile.py를 생성하고 테스트 스크립트를 작성합니다. from locust import HttpUser, TaskSet, task, betweenclass UserBehavior(TaskSet): @task(1) def get_example(self): # GET 요청 예시 self.client.get("/api/example") @task(2) def post_example(self): # POST 요청 예시 self.client.post("/api/example", json={"key": "value"}) @task(3) def put_..
설명전pdf 10개이상을 병합해야하는 일이 있었는데 사이트를 찾아봐도 막상 다 업로드를 하면 유료 버젼이 뜨는 것을 보게 되었습니다. 그래서 쉽고 무료로 pdf 여러개 병합하는 방법 공유하게 되었습니다. 1. PyPDF2를 설치합니다. pip install PyPDF22. 실행할 파일 sum.py를 생성하고 지금 이 코드를 적용합니다. import PyPDF2# 합칠 PDF 파일의 경로files = [ r"C:\Users\junhee\Downloads\학습데이터 자료\매뉴얼자료\file1.pdf", r"C:\Users\junhee\Downloads\학습데이터 자료\매뉴얼자료\file2.pdf", r"C:\Users\junhee\Downloads\학습데이터 자료\매뉴얼자료\file3.p..