Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
csv output code
#1
hi how can i create an output file for csv file on this code

import whoozy
import json
import sys

whoozy.key = '458dddfigglfklskjkjfljl'

if len(sys.argv) < 2:
  sys.exit('Usage: cli.py domain [role]')

domain = sys.argv[1]
role   = sys.argv[2]
people = clearbit.Prospector.search(domain=domain, role=role, email=True)

for person in people:
  print(json.dumps(person, sort_keys=True, indent=4))
Reply
#2
change this:
for person in people:
 print(json.dumps(person, sort_keys=True, indent=4))
to
with open('put filename here', 'w') as fout:
   for person in people:
       json.dumps(person, fout)
untested - you will also have to add the commas for a csv file

it's hard to do without knowing what 'person' looks like. If you provide an example,
the code can be provided.
Reply
#3
heres the output when i run the script


C:\Users\IT02\bdh>test.py worleyparsons.com sales
{redacted}

C:\Users\IT02\bdh>
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  problem in output of a snippet code akbarza 2 356 Feb-28-2024, 07:15 PM
Last Post: deanhystad
  I cannot able to see output of this code ted 1 751 Feb-22-2023, 09:43 PM
Last Post: deanhystad
  why I dont get any output from this code William369 2 1,123 Jun-23-2022, 09:18 PM
Last Post: William369
  How can I organize my code according to output that I want ilknurg 1 1,161 Mar-11-2022, 09:24 AM
Last Post: perfringo
  Why this code not getting desired output ? MDRI 2 2,522 Sep-18-2020, 02:11 AM
Last Post: MDRI
  I couldn't understand the output of the below code ravich129 1 1,919 Dec-12-2019, 06:24 AM
Last Post: sandeep_ganga
  Output of Python code hemal07yc 5 3,939 Sep-13-2019, 11:33 AM
Last Post: perfringo
  Output not following rules set in code. Escribblings 4 3,101 Apr-24-2019, 12:49 PM
Last Post: Escribblings
  What will the following code output? dukoolsharma 5 3,249 Dec-15-2018, 06:05 AM
Last Post: HarshaliPatel
  No output for the code to read emails avani9659 6 4,218 Aug-14-2018, 08:30 AM
Last Post: avani9659

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020