<div dir="ltr">Colug, <div><br></div><div>I am playing with the faker tool from python to generate fake data to use in some database and noSQL examples. </div><div><br></div><div>I think I am missing the easy way to use the docs or to use some inline or online tips to get things done efficiently. </div><div><br></div><div>I will share my code but understand I am not so much looking for a solution to this SPECIFIC problem as I am looking for how to enable myself to discover these solutions on my own going forward. </div><div><br></div><div>I have this code, and it works, I like it.</div><div><br></div><div>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; </div><div><div>from faker import Factory</div><div>import csv</div><div>import sys</div><div>with open(&#39;data.csv&#39;,&#39;w&#39;) as f:<br></div><div>    for i in range(100):</div><div>        fake = Factory.create()</div><div>        name = fake.profile()[&#39;name&#39;]</div><div>        address_raw = fake.profile()[&#39;address&#39;]</div><div>        address = address_raw.replace(&#39;\n&#39;, &#39;, &#39;)</div><div>        birthdate = fake.profile()[&#39;birthdate&#39;]</div><div>        phone = fake.phone_number()</div><div>        writer = csv.writer(f)</div><div>        writer.writerow((name,address,birthdate,phone))</div></div><div><br></div><div>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;</div><div><br></div><div>Here is todays challenge. </div><div><br></div><div>The name generated will include firstname lastname and also prefix, like </div><div>Dr. William Smith. </div><div><br></div><div>I want a few thousand rows of just firstname,lastname</div><div><br></div><div>So I copy that code and begin. </div><div><br></div><div>How would I see all the options in fake.profile() so I can see if there is a firstname, lastname. </div><div><br></div><div>I assume fake.profile returns an array of name value pairs, I want to see all of them so I can pick and choose.</div><div><br></div><div>If I did not want to just write the code, where would I find the docs on this. </div><div><br></div><div>Thanks in advance..</div><div><br></div><div>As usual wording the question has probably lead me to an answer on my own, but please still reply. </div><div><br></div><div>Thanks</div><div><br></div><div>Tom</div></div>