Yes this is it :)

thanks :)

W dniu niedziela, 30 listopada 2014 20:24:44 UTC+1 użytkownik Collin 
Anderson napisał:
>
> Hi,
>
> I think you want something like this. (Just make sure a login name doesn't 
> have '..' in it :).
>
> filehandler = open('users/' + login, "wb")
>
> Collin
>
>
> On Saturday, November 29, 2014 2:35:31 PM UTC-5, Dariusz Mysior wrote:
>>
>> I join to topic with my problem
>>
>> I want to create new file with login and password in new file and I can 
>> do it with code below, but I don't know how save this new files in one 
>> folder users
>> def rejestracja(login, haslo): save=None login_tmp=login haslo_tmp=haslo 
>> save={login_tmp:haslo_tmp}
>>
>>  filehandler=open(login,"wb")
>> pickle.dump(save,filehandler)
>> filehandler.close()
>> filehandler=open(login,"rb")
>> file=pickle.load(filehandler)
>> filehandler.close()
>> print file
>> raw_input("\n\nWcisnij [ENTER]: ")
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/73ab9242-d1f0-47eb-b05c-1a7516dd913c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to