pasteorg / paste

Python Paste (core) repository

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question about "from paste.deploy import loadapp"

4383 opened this issue · comments

Hello

I've some questions concerning this code from paste.deploy import loadapp

I can't find any deploy module in the source code of paste, also I don't find any entry_points or things like that related to deploy your setup.py or no dynamic definition of it in the __init__.py mechanismes....

Maybe I missing something... so... can you indicate to me where I can find the deploy module and the loadapp function, and also explain how you load this module and the black magic behind that.

Do not hesitate to ask me questions if needed.

I waiting for your reply.

Thanks by advance for your help and your time :)

Heh, yeah, it is pretty weird and hard to figure out. This is one the things that predates my time maintaining paste. Basically at some point in the past people realized that paste.deploy was one of the main useful parts of paste and they didn't want all the rest of paste, so it was extracted. As paste and paste.deploy both got "old" maintenance sort of diverged. They are still maintained, but as separate packages.

paste.deploy is under the domain of the Pylons project (and I'm a maintainer of it over there too): https://github.com/Pylons/pastedeploy and https://pypi.org/project/PasteDeploy/

If that covers it, feel free to close this. If not, let me know how else I can help.

@cdent excellent! fair enough.

I'll close it now.

Thanks for the free guided tour :)