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
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
kiroとCodexで最高のSpec駆動開発を!!数時間で web3ネイティブなミニゲームを作ってみたよ!
mashharuki
0
670
オープンソースソフトウェアへの解像度🔬
utam0k
16
3k
CSC509 Lecture 05
javiergs
PRO
0
300
Domain-centric? Why Hexagonal, Onion, and Clean Architecture Are Answers to the Wrong Question
olivergierke
3
910
AI Coding Meetup #3 - 導入セッション / ai-coding-meetup-3
izumin5210
0
3.4k
iOSエンジニア向けの英語学習アプリを作る!
yukawashouhei
0
200
3年ぶりにコードを書いた元CTOが Claude Codeと30分でMVPを作った話
maikokojima
0
540
AI駆動で0→1をやって見えた光と伸びしろ
passion0102
1
370
20251016_Rails News ~Rails 8.1の足音を聴く~
morimorihoge
2
480
登壇は dynamic! な営みである / speech is dynamic
da1chi
0
340
理論と実務のギャップを超える
eycjur
0
140
ソフトウェア設計の実践的な考え方
masuda220
PRO
4
600
Featured
See All Featured
Embracing the Ebb and Flow
colly
88
4.9k
Speed Design
sergeychernyshev
32
1.2k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.7k
The World Runs on Bad Software
bkeepers
PRO
72
11k
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
31
2.7k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.5k
Mobile First: as difficult as doing things right
swwweet
225
10k
BBQ
matthewcrist
89
9.8k
Building an army of robots
kneath
306
46k
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