package - What is the average length of a Python module -


i have bits , bobs of code , i'm thinking of getting them in python module. might need python package. know has how want divide code. still need know average length (in lines) of python module.

using following numbers please select small | average | big

  • 1,000 lines of python
  • 10,000 lines
  • 50,000 lines
  • 100,000 lines
  • 1,000,000 lines

please help.

a module should smallest indepently useable unit of code. that's modules for: modularity, independence, take need. package should set of modules functionally belong cover problem area, e.g. statistical computations or 3d graphics.

so number of lines not important. still think modules of 10000+ lines rare. there's no lower bound.


Comments