1 The what and why of Python packages

 

This chapter covers

  • Packaging code to make it more accessible to others
  • Using packages to make your own projects more manageable
  • Building Python packages for different platforms

Imagine that you’ve written a groundbreaking piece of Python software for use in self-driving cars. Your latest work is going to change the world, and you want as many people using it as possible. You’ve convinced CarCorp to use your solution, and they want to retrieve the code to get started with it.

When CarCorp calls to ask how to install and use your code, you go through all the gory details of copying each file to the right directory, making some files executable so they can be run as commands, and so on. Because you wrote the software, this is all second nature to you. To your surprise, the developers on the other end of the phone are a bit lost. What happened?

You’ve discovered the chasm that often exists between those who create software and those who use it. These days, people are used to visiting the app store on their iPhone when they need something new. You have a bit of work to do if you want to improve the user experience of your software!

1.1 What is a package, anyway?

 
 
 

1.1.1 Standardizing packaging for automation

 
 

1.1.2 The contents of a distribution package

 
 
 

1.1.3 The challenges of sharing software

 
 
 

1.2 How packaging helps you

 
 

1.2.1 Enforcing cohesion and encapsulation through packaging

 

1.2.2 Promoting clear ownership of code

 
 
 

1.2.3 Decoupling implementation from usage

 
 

1.2.4 Filling roles by composing small packages

 
 

Summary

 
 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage