Python Package Tutorial - Organize Your Code

preview_player
Показать описание
In this video, I'll show you the basics of creating your own packages to import and use in Python.

Рекомендации по теме
Комментарии
Автор

love the simplicity of this tutorial...tried several other not-so-good tutorials before encountering this one, nice work!

johnsterling
Автор

I've read variations of what was covered in this video, but this video by far explains the concept in a concise way.

jasonbarnett
Автор

"You're outside of the directory looking at the package, and then the package will have all the subdirectories."

^that's actually an excellent way to put it imo

RandomAlexus
Автор

Far and away the most concise explanation I found! This helped me figure out a silly mistake I was making! Thank you!

johnkilbride
Автор

Simple, clear and straight to the point👍🏻 Best tutorial so far, thx

samb.
Автор

Pluralsight Author made a big nuisance just to explain about this concept. You made it so clear. Thank you.

kakmca
Автор

Thank you very much, the best explanation i ve seen untill now

aramiskessleragostini
Автор

Real simple & straightforward explanation. Thanks man!

HKHasty
Автор

Great video. Clear, concise and to the point.

aussieharyono
Автор

May your Christmas be merry and bright

michaelhagans
Автор

Excellent! Thanks. This link is going to be saved into notes for the section Packages.

davidalexander
Автор

This is way clearer than the original documentation of packages.

Pinocchio
Автор

Super helpful! I went to 5 other videos before I got to yours. This one was all I needed. Thanks!

BookOfMorman
Автор

Thanks man! Straight to the point and very helpful.

corydonelson
Автор

Solid explanation, the legendary guide that I've been looking for, I'm a subscriber now

maxlimgj
Автор

Short and nicely explained.Great video

MadhuExplorer
Автор

Thanks for this! This was a great explanation.

GuitarreroDaniel
Автор

Just exactly what I was looking for. Thank you so much for the tutorial.

md.tahsinrahi
Автор

Thank you, best and simple explanation.Awesome ...

vijayasankar
Автор

good tutorial. the key is the __init__.py file tells python to treat the folder as a package. If you print sys.path, you will see a list of directories that will be searched when an import is attempted. A specific directory can be appended to sys.path if you need.

flyingdutchman