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
為你自己學 Python - 冷知識篇
eddie
1
350
Android端末で実現するオンデバイスLLM 2025
masayukisuda
1
150
旅行プランAIエージェント開発の裏側
ippo012
2
910
Rancher と Terraform
fufuhu
2
550
奥深くて厄介な「改行」と仲良くなる20分
oguemon
1
540
Zendeskのチケットを Amazon Bedrockで 解析した
ryokosuge
3
310
MCPとデザインシステムに立脚したデザインと実装の融合
yukukotani
4
1.4k
請來的 AI Agent 同事們在寫程式時,怎麼用 pytest 去除各種幻想與盲點
keitheis
0
120
複雑なドメインに挑む.pdf
yukisakai1225
5
1.2k
ファインディ株式会社におけるMCP活用とサービス開発
starfish719
0
1.6k
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
380
AI時代のUIはどこへ行く?
yusukebe
18
8.9k
Featured
See All Featured
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.4k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
112
20k
Become a Pro
speakerdeck
PRO
29
5.5k
Statistics for Hackers
jakevdp
799
220k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.7k
Why You Should Never Use an ORM
jnunemaker
PRO
59
9.5k
Designing for Performance
lara
610
69k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
139
34k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
810
The Straight Up "How To Draw Better" Workshop
denniskardys
236
140k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.4k
Producing Creativity
orderedlist
PRO
347
40k
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