일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- S3
- 개발
- Kafka
- AWS
- Linux
- kafkaconnect
- 파이썬
- Feature Importance
- python
- DataPlatform
- tmux
- dataengineering
- 데이터엔지니어
- 설치
- airflow
Archives
- Today
- Total
목록Python (1)
GuriLogs.
Custom Python Package 생성하기
먼저, Python Package 구조 생성├── custom_python│ ├── __init__.py│ └── functions.py├── README.md└── setup.py패키지 내에서 활용하고 싶은 함수 정의custom_python/functions.py 파일에 정의여기서 functions는 import custom_python.functions 이렇게 활용됨. def info(~): ... return ...def funct(~): ... return ...등등빌드 정보 세팅setup.py 파일을 생성하고 해당 파일 안에 빌드 정보를 입력한다.setup에는 이 외에도 많은 파라미터가 있다.(https://setuptools.pypa.io/en/latest/references/k..
Python
2024. 5. 26. 16:52