agen judi bola , sportbook, casino, togel, number game, singapore, tangkas, basket, slot, poker, dominoqq,
agen bola. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 50.000 ,- bonus cashback hingga 10% , diskon togel hingga 66% bisa bermain di android dan IOS kapanpun dan dimana pun. poker , bandarq , aduq, domino qq ,
dominobet. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 10.000 ,- bonus turnover 0.5% dan bonus referral 20%. Bonus - bonus yang dihadirkan bisa terbilang cukup tinggi dan memuaskan, anda hanya perlu memasang pada situs yang memberikan bursa pasaran terbaik yaitu
http://45.77.173.118/ Bola168. Situs penyedia segala jenis permainan poker online kini semakin banyak ditemukan di Internet, salah satunya TahunQQ merupakan situs Agen Judi Domino66 Dan
BandarQ Terpercaya yang mampu memberikan banyak provit bagi bettornya. Permainan Yang Di Sediakan Dewi365 Juga sangat banyak Dan menarik dan Peluang untuk memenangkan Taruhan Judi online ini juga sangat mudah . Mainkan Segera Taruhan Sportbook anda bersama
Agen Judi Bola Bersama Dewi365 Kemenangan Anda Berapa pun akan Terbayarkan. Tersedia 9 macam permainan seru yang bisa kamu mainkan hanya di dalam 1 ID saja. Permainan seru yang tersedia seperti Poker, Domino QQ Dan juga
BandarQ Online. Semuanya tersedia lengkap hanya di ABGQQ. Situs ABGQQ sangat mudah dimenangkan, kamu juga akan mendapatkan mega bonus dan setiap pemain berhak mendapatkan cashback mingguan. ABGQQ juga telah diakui sebagai
Bandar Domino Online yang menjamin sistem FAIR PLAY disetiap permainan yang bisa dimainkan dengan deposit minimal hanya Rp.25.000. DEWI365 adalah
Bandar Judi Bola Terpercaya & resmi dan terpercaya di indonesia. Situs judi bola ini menyediakan fasilitas bagi anda untuk dapat bermain memainkan permainan judi bola. Didalam situs ini memiliki berbagai permainan taruhan bola terlengkap seperti Sbobet, yang membuat DEWI365 menjadi situs judi bola terbaik dan terpercaya di Indonesia. Tentunya sebagai situs yang bertugas sebagai
Bandar Poker Online pastinya akan berusaha untuk menjaga semua informasi dan keamanan yang terdapat di POKERQQ13. Kotakqq adalah situs
Judi Poker Online Terpercayayang menyediakan 9 jenis permainan sakong online, dominoqq, domino99, bandarq, bandar ceme, aduq, poker online, bandar poker, balak66, perang baccarat, dan capsa susun. Dengan minimal deposit withdraw 15.000 Anda sudah bisa memainkan semua permaina pkv games di situs kami. Jackpot besar,Win rate tinggi, Fair play, PKV Games
Comments
Hi Paolo,
You can achieve this by closing the default logfile at the start of the experiment, providing a new name, and reopening the logfile. Of course, to determine the new name for the logfile, you need to use some logic to see which session-number logfile does not yet exist for that particular subject number.
It's a bit tricky, and requires some inline scripting. But the script below should get you started:
Cheers,
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
excellent - thank you so much! the script does exactly what I want. The one thing it does not do, however, is to log the session_nr ... should I declare the variable somewhere for it to be logged?
thanks - Paolo
Hi,
Yes! In order to make in-an-inline-script-defined variables available in the GUI (e.g. the logger item) as well, you should set them at the end of you inline script by using the
exp.set()
function. For example:For more information, see:
Does that help?
Best,
Lotje
Did you like my answer? Feel free to
awesome thank you!
Hi there,
I'm new to OpenSesame and Python - I tried using the above script to automatically set the session number, which is then saved as the file name. I tried entering it into the main script and it was removed once I clicked apply, and when I put it in a python inline script at the start of my experiment in the GUI, it didn't run. Am I missing something simple?
Ideally, I would like to use this with opensesamerun. Would that be possible?
Many thanks,
Joff
Yes, you (or rather we) are missing the actual error message that you get when the experiment doesn't run!
Check out SigmundAI.eu for our OpenSesame AI assistant!
Hi Sebastian,
Thanks for getting back to me. There was no error message, the experiment runs but it is as if the inline code is ignored.
Thanks,
Joff
Hi there,
I am trying to use this script with OS 3, but I receive the error " 'str' object has no attribute 'var' ". I think the problem is with the initiate logfile function. Any help would be greatly appreciated!
Many thanks,
Joff
Hi Joff,
You don't need to call
log.__init__()
. Essentially, in Python you never (or very rarely) call_init__()
functions. Those are constructors that are called automatically when an object is created, and OpenSesame has already createdlog
for you. So in this case, simply callinglog.open()
will be enough to close the current logfile, and open a new one.Cheers!
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Great, that's working now. Thanks very much!