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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Yoginth
August 07, 2018
Programming
1
20
Python Packaging
Yoginth
August 07, 2018
Tweet
Share
More Decks by Yoginth
See All by Yoginth
Introduction to Git
yoginth
1
47
Other Decks in Programming
See All in Programming
守る「だけ」の優しいEMを抜けて、 事業とチームを両方見る視点を身につけた話
maroon8021
3
1k
AHC061解説
shun_pi
0
390
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
13
8.2k
LangChain4jとは一味違うLangChain4j-CDI
kazumura
1
190
AI Assistants for Your Angular Solutions
manfredsteyer
PRO
0
140
20260228_JAWS_Beginner_Kansai
takuyay0ne
5
570
Swift ConcurrencyでよりSwiftyに
yuukiw00w
0
270
RAGでハマりがちな"Excelの罠"を、データの構造化で突破する
harumiweb
9
2.9k
生成 AI 時代のスナップショットテストってやつを見せてあげますよ(α版)
ojun9
0
250
nuget-server - あなたが必要だったNuGetサーバー
kekyo
PRO
0
270
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
590
Agentic AI: Evolution oder Revolution
mobilelarson
PRO
0
190
Featured
See All Featured
Into the Great Unknown - MozCon
thekraken
40
2.3k
Accessibility Awareness
sabderemane
0
82
The AI Revolution Will Not Be Monopolized: How open-source beats economies of scale, even for LLMs
inesmontani
PRO
3
3.1k
How to Get Subject Matter Experts Bought In and Actively Contributing to SEO & PR Initiatives.
livdayseo
0
85
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
54k
Information Architects: The Missing Link in Design Systems
soysaucechin
0
830
Scaling GitHub
holman
464
140k
Music & Morning Musume
bryan
47
7.1k
Mind Mapping
helmedeiros
PRO
1
120
Navigating Weather and Climate Data
rabernat
0
140
First, design no harm
axbom
PRO
2
1.1k
We Are The Robots
honzajavorek
0
200
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