Python
-
Python/자연과학 데이터를 지도에 표시하는 basemap/User guide코딩/Python 2024. 7. 10. 14:33
Basemap user guide의 번역본. 설치방법과 projection의 종류에 대해서는 제외.IntroductionThe matplotlib basemap toolkit is a library for plotting 2D data on maps in Python. It is similar in functionality to GrADS, GMT, the MATLAB Mapping Toolbox and the IDL Mapping Facilities. CDAT and PyNGL are other Python libraries with similar capabilities.Basemap does not plot on its own, but provides the facilities to transform..
-
Python/지도를 사용할 수 있는 Folium/1. User guide코딩/Python 2024. 7. 9. 14:35
아래 번역본은 지도 샘플을 포함하고 있지 않으므로 각 주제별 링크를 따라 참조하면 이해가 더 쉽다. https://python-visualization.github.io/folium/latest/user_guide.htmlUser guideThe user guide covers different parts of basic usage of Folium. Each page focuses on a single topic and outlines how it is implemented in Folium, with reproducible examples.If you don’t know anything about Folium, start with the Getting started.Advanced topics can..
-
Python/지도를 사용할 수 있는 Folium/0. Getting started코딩/Python 2024. 7. 9. 14:23
아래 번역본은 지도 샘플을 포함하고 있지 않으므로 원문 링크를 참조하면 이해가 더 쉽다.https://python-visualization.github.io/folium/latest/getting_started.htmlGetting startedInstallationFolium can be installed usingFolium은 다음을 사용하여 설치할 수 있다.$ pip install foliumIf you are using the Conda package manager, the equivalent isConda 패키지 관리자를 사용하는 경우 이에 상응하는 것은 다음과 같다.$ conda install folium -c conda-forgeDependenciesFolium has the followin..
-
Python/PyInstaller/0. PyInstaller Manual코딩/Python 2024. 7. 8. 12:20
원본은 아래 링크를 참조한다.https://pyinstaller.org/en/stable/index.html VersionPyInstaller 6.9.0Homepagehttps://pyinstaller.org/Contactpyinstaller@googlegroups.comAuthorsDavid Cortesi, based on structure by Giovanni Bajo & William Caban, based on Gordon McMillan’s manualCopyrightThis document has been placed in the public domain. PyInstaller bundles a Python application and all its dependencies into a sing..
-
Python/PyInstaller/1. What PyInstaller Does and How It Does It코딩/Python 2024. 7. 8. 12:16
원본은 아래 링크를 참조한다.https://pyinstaller.org/en/stable/operating-mode.html This section covers the basic ideas of PyInstaller. These ideas apply to all platforms. Options and special cases are covered below, under Using PyInstaller.PyInstaller reads a Python script written by you. It analyzes your code to discover every other module and library your script needs in order to execute. Then it collects ..
-
Python/PyInstaller 사용법코딩/Python 2024. 7. 8. 12:05
PyInstaller는 파이썬 코드를 실행파일로 만들어주는 프로그램이다.기본적으로는 터미널환경에서 사용되며 필요한 경우 파이썬 코드에서도 구현할 수 있다.PyInstaller에 대해 자세히 알려면 아래 링크를 참조한다.https://pyinstaller.org/ 또는 상세한 번역본은 아래 링크를 참조한다.Python/PyInstaller/0. PyInstaller Manual Python/PyInstaller/0. PyInstaller Manual원본은 아래 링크를 참조한다.https://pyinstaller.org/en/stable/index.html VersionPyInstaller 6.9.0Homepagehttps://pyinstaller.org/Contactpyinstaller@googlegrou..
-
Python/python-pptx 사용자 가이드 목차코딩/Python 2024. 6. 12. 16:07
Python/python-pptx 사용자 가이드 - 1. 소개Python/python-pptx 사용자 가이드 - 2. 설치Python/python-pptx 사용자 가이드 - 3. 시작Python/python-pptx 사용자 가이드 - 4. 프리젠테이션Python/python-pptx 사용자 가이드 - 5. 슬라이드Python/python-pptx 사용자 가이드 - 6. ShapesPython/python-pptx 사용자 가이드 - 7. AutoShapesPython/python-pptx 사용자 가이드 - 8. Placeholder 1Python/python-pptx 사용자 가이드 - 9. Placeholder 2Python/python-pptx 사용자 가이드 - 10. TextPython/python-p..
-
Python/python-pptx 사용자 가이드 - 15. Concepts코딩/Python 2024. 6. 12. 15:21
https://python-pptx.readthedocs.io/en/latest/user/concepts.htmlConceptspython-pptx is completely object-oriented, and in general any operations you perform with it will be on an object. The root object for a presentation is Presentation. API details are provided on the modules pages, but here are some basics to get you started, especially some relationships you might find surprising at first.A p..