"Clement" <[EMAIL PROTECTED]> writes:
> I am newbie to Python.. i want to know something..
>
> can i place an object in disk instead of placing in Main Memory...?
>
> If possible, can you please explain with some scripts...?
>
> can two python script share a common object?
>
F
On Mar 27, 10:33 am, "Clement" <[EMAIL PROTECTED]> wrote:
> I am newbie to Python.. i want to know something..
>
> can i place an object in disk instead of placing in Main Memory...?
>
> If possible, can you please explain with some scripts...?
>
> can two python script share a common o
Clement a écrit :
> I am newbie to Python..
To Python only, or to both Python and programming in general ?
> i want to know something..
>
> can i place an object in disk instead of placing in Main Memory...?
You can store it on disk (cf pickles and friends), but to actually use
it
"Diez B. Roggisch" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> What do you mean by that? They can both load a pickled object, yes. But
they
> can't share it as a at-runtime object, where changes in one script are
> immediately are known to the other.
>
> To do such a thing, look
On Tue, 2007-03-27 at 16:49 +0200, Diez B. Roggisch wrote:
> > can two python script share a common object?
>
> What do you mean by that? They can both load a pickled object, yes. But they
> can't share it as a at-runtime object, where changes in one script are
> immediately are known to the o
Clement wrote:
> I am newbie to Python.. i want to know something..
>
> can i place an object in disk instead of placing in Main Memory...?
> If possible, can you please explain with some scripts...?
See the module pickle and it's examples.
> can two python script share a common ob