[tw] Re: Inserting tiddlers with python script

2010-06-23 Thread marcel
Well, since C# is object oriented, there is no simple script but a set of classes. I will not share these here for now. I intend to release it as an open source project on codeplex, once the source code is more mature. In short, I simply add the required html nodes to the storearea. I will

Re: [tw] Re: Inserting tiddlers with python script

2010-06-22 Thread FND
The files in TiddlyPY gave me some ID's how to move forward Looking forward to hear more about what you come up with. I insert tiddlers using C#/.NET, and do it much the same way Interesting - it'd be great if you could share you script as well. I'd also be curious to know what both of

[tw] Re: Inserting tiddlers with python script

2010-06-22 Thread okido
I did some import from csv into tiddlers that used datatiddler plugin. In Python this is easier to do I think, changing code and data is rather easy although hardcore JS users might think different. Further more I was making tiddlers based on file names in a folder. I use it as a catalog for

[tw] Re: Inserting tiddlers with python script

2010-06-19 Thread marcel
Hi Okido, I insert tiddlers using C#/.NET, and do it much the same way. It works for me. So I would guess you are on the safe side doing like you describe. br, Marcel On Jun 18, 7:34 pm, okido bkn...@gmail.com wrote: I use a python script to create tiddlers and insert them in to a TW by str =

[tw] Re: Inserting tiddlers with python script

2010-06-18 Thread okido
HI FND, The files in TiddlyPY gave me some ID's how to move forward, thanks a lot. Okido On 18 June, 19:49, FND f...@gmx.net wrote: I use a python script to create tiddlers and insert them in to a TW by str = str.replace(old, new) function. While practical for the most part, that might be