Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #99787
| From | Peter Otten <__peter__@web.de> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Generate config file from template using Python search and replace. |
| Date | 2015-12-01 11:49 +0100 |
| Organization | None |
| Message-ID | <mailman.64.1448966994.14615.python-list@python.org> (permalink) |
| References | (2 earlier) <4f923003-4f85-4a69-bfda-165194211bb4@googlegroups.com> <mailman.11.1448837430.14615.python-list@python.org> <0dd0db34-7f8f-4e8b-ad6a-c82ad19c2e5e@googlegroups.com> <mailman.33.1448874871.14615.python-list@python.org> <8c787187-910c-40df-9235-9e4c2dafb19c@googlegroups.com> |
Mr Zaug wrote:
> On Monday, November 30, 2015 at 4:14:48 AM UTC-5, Peter Otten wrote:
>> Mr Zaug wrote:
>>
>> > On Sunday, November 29, 2015 at 5:50:51 PM UTC-5, Peter Otten wrote:
>> >> Mr Zaug wrote:
>> >>
>> >> > When I run this script on OS X El Capitan, I see,
>> >> >
>> >> > # permission sensitive cache
>> >> > $include "_dispatcher_shared_auth-checker:
>> >> >
>> >> > Was I supposed to incorporate it into the script I posted?
>> >>
>> >> Are you referring to my post? I'm sorry, I can't make sense of your
>> >> question.
>> >
>> > Yes. The snippet you posted went way over my head. When I ran it, it
>> > printed
>> >
>> > # permission sensitive cache
>> > $include "_dispatcher_shared_auth-checker:
>>
>> It's hard to tell from that problem description what might have gone
>> wrong. However:
>>
>> In your template file you have to enclose all words you want to replace
>> in braces ("you have foo options" becomes "you have {foo} options"), to
>> replace all literal { with {{ and all literal } with }}.
>>
>> Did you do that?
>
> Yup, I sure did. So here is my current script. The only remaining task now
> is figuring out how to write the contents to a new file.
>
> #!/usr/bin/env python
> import os
> import sys
>
> script, template_file = sys.argv
> print "Opening the template file..."
>
> print "What is the serial number of the site?",
> nnn = raw_input()
[...]
> with open (template_file, "r") as a_string:
> data=a_string.read().replace('{SERVER_NAME}',
> server_name).replace('{BRAND}', brand).replace('{CONTENT_PATH}',
> content_path).replace('{DAMPATH}', dampath).replace('{ENV}',
> env).replace('{CACHE_DOCROOT}', cache_docroot)
If all other braces are properly escaped you can use format instead of
replace:
data = a_string.read().format(
SERVER_NAME=server_name,
BRAND=brand,
CONTENT_PATH=content_path
DAMPATH=dampath,
ENV=env,
CACHE_DOCROOT=cache_doc_root)
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-11-28 13:45 -0800
Re: Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-11-28 14:04 -0800
Re: Generate config file from template using Python search and replace. Peter Otten <__peter__@web.de> - 2015-11-29 00:07 +0100
Re: Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-11-29 12:23 -0800
Re: Generate config file from template using Python search and replace. Peter Otten <__peter__@web.de> - 2015-11-29 23:50 +0100
Re: Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-11-29 17:28 -0800
Re: Generate config file from template using Python search and replace. Peter Otten <__peter__@web.de> - 2015-11-30 10:14 +0100
Re: Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-11-30 20:54 -0800
Re: Generate config file from template using Python search and replace. Peter Otten <__peter__@web.de> - 2015-12-01 11:49 +0100
Re: Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-12-01 05:18 -0800
Re: Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-12-01 06:18 -0800
Re: Generate config file from template using Python search and replace. Peter Otten <__peter__@web.de> - 2015-12-01 15:41 +0100
Re: Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-12-01 07:21 -0800
Re: Generate config file from template using Python search and replace. Peter Otten <__peter__@web.de> - 2015-12-01 16:43 +0100
Re: Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-12-01 10:43 -0800
Re: Generate config file from template using Python search and replace. Mr Zaug <matthew.herzog@gmail.com> - 2015-11-29 18:31 -0800
Re: Generate config file from template using Python search and replace. Rob Hills <rhills@medimorphosis.com.au> - 2015-11-30 10:40 +0800
Re: Generate config file from template using Python search and replace. MRAB <python@mrabarnett.plus.com> - 2015-11-30 03:23 +0000
csiph-web