Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Python Packaging
Search
Yoginth
August 07, 2018
Programming
1
19
Python Packaging
Yoginth
August 07, 2018
Tweet
Share
More Decks by Yoginth
See All by Yoginth
Introduction to Git
yoginth
1
45
Other Decks in Programming
See All in Programming
既存デザインを変更せずにタップ領域を広げる方法
tahia910
1
240
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
300
Node-RED を(HTTP で)つなげる MCP サーバーを作ってみた
highu
0
110
Hypervel - A Coroutine Framework for Laravel Artisans
albertcht
1
110
エンジニア向け採用ピッチ資料
inusan
0
170
なぜ「共通化」を考え、失敗を繰り返すのか
rinchoku
1
570
20250628_非エンジニアがバイブコーディングしてみた
ponponmikankan
0
510
Team operations that are not burdened by SRE
kazatohiei
1
260
GraphRAGの仕組みまるわかり
tosuri13
8
500
Kotlin エンジニアへ送る:Swift 案件に参加させられる日に備えて~似てるけど色々違う Swift の仕様 / from Kotlin to Swift
lovee
1
260
なんとなくわかった気になるブロックテーマ入門/contents.nagoya 2025 6.28
chiilog
1
230
Railsアプリケーションと パフォーマンスチューニング ー 秒間5万リクエストの モバイルオーダーシステムを支える事例 ー Rubyセミナー 大阪
falcon8823
4
1k
Featured
See All Featured
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.3k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
17
940
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Practical Orchestrator
shlominoach
188
11k
Become a Pro
speakerdeck
PRO
28
5.4k
Statistics for Hackers
jakevdp
799
220k
Music & Morning Musume
bryan
46
6.6k
How to train your dragon (web standard)
notwaldorf
94
6.1k
Making Projects Easy
brettharned
116
6.3k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Transcript
Python Packaging https://yoginth.gitlab.io
None
None
None
Example
Bubble Sort without package def bubbleSort(alist): for passnum in range(len(alist)-1,0,-1):
for i in range(passnum): if alist[i]>alist[i+1]: temp = alist[i] alist[i] = alist[i+1] alist[i+1] = temp alist = [54,26,93,17,77,31,44,55,20] print(bubbleSort(alist))
Bubble Sort with package import sorting alist = [54,26,93,17,77,31,44,55,20] print(sorting.bubblesort(alist))
Let’s dive in
None
Directory Structure mcetadd mcetadd/ __init__.py README.md setup.py test.py
None
None
None
None
None
Thank you with