The python license model

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ramza Brown

    #1

    The python license model

    Can you distribute a python system with only a couple of libraries that
    you plan to use. For example, I generally avoid having a system with
    hundreds of loose scripts(ie python library). So, I have considered
    only taking the libraries I need. My question, is python license
    friendly for doing this?

    I haven't worked with 'egg' too much.

    --
    Ramza from Atlanta

  • Ramza Brown

    #2
    Re: The python license model

    Ramza Brown wrote:[color=blue]
    > Can you distribute a python system with only a couple of libraries that
    > you plan to use. For example, I generally avoid having a system with
    > hundreds of loose scripts(ie python library). So, I have considered
    > only taking the libraries I need. My question, is python license
    > friendly for doing this?
    >
    > I haven't worked with 'egg' too much.
    >[/color]
    Also, are there any articles for distributing python applications
    without the default python install.

    --
    Ramza from Atlanta

    Comment

    • Aahz

      #3
      Re: The python license model

      In article <tpGdnUh98pTjQ2 bfRVn-tA@comcast.com> ,
      Ramza Brown <berlin.brown@g mail.com> wrote:[color=blue]
      >
      >Can you distribute a python system with only a couple of libraries that
      >you plan to use. For example, I generally avoid having a system with
      >hundreds of loose scripts(ie python library). So, I have considered
      >only taking the libraries I need. My question, is python license
      >friendly for doing this?[/color]

      Dunno what you mean by "friendly", but aside from some little gotchas
      having to do with its storied history, you can consider Python's license
      functionally equivalent to BSD/MIT/Apache. IOW, do whatever you want, as
      long as you keep the copyright around.
      --
      Aahz (aahz@pythoncra ft.com) <*> http://www.pythoncraft.com/

      The way to build large Python applications is to componentize and
      loosely-couple the hell out of everything.

      Comment

      Working...