Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you change the name of a pyramid project? [closed]

Tags:

python

pyramid

I am just starting out with pyramid and I am doing the tutorial. I would like to use some of the tutorial code as a starting point for the project that I am going to start, but I don't want to keep the project name as tutorial. It seems like once you give a project a name that name is used in many places. Is there a way to easily change the project name? I am sure I will have to manually edit some stuff. Just wondering if there may be an easy way to do this.

like image 562
Spencer Cooley Avatar asked Sep 10 '25 22:09

Spencer Cooley


1 Answers

It's not a "project name". It's the name of a python package. Yes, you'll have to search/replace and rename that package everywhere in your code. You're probably better off just starting from a new project with the right name if you are only at the tutorial stage.

like image 58
Michael Merickel Avatar answered Sep 13 '25 11:09

Michael Merickel