Python:使用CSV解析(?)变量,然后输出到另一个fi

2024-09-24 00:33:50 发布

您现在位置:Python中文网/ 问答频道 /正文

我是服务器管理员。我不用写太多脚本就可以溜走了,但唉,它已经抬起了它丑陋的头。

小结:我有示例.csv如下所示:

Stan,Marsh,Stan Marsh,1001,899,smarsh,smarsh@info.com
Eric,Cartman,Eric Cartman,1002,898,ecartman,ecartman@info.com

现在。我试着读入csv文件。然后,我想从每一行取一个值,然后把它放进类似这样的东西中

^{pr2}$

如您所见,我正在尝试创建一个LDIF文件,它允许我导入用户名,然后自动填充变量。

我就是不能把这些东西拼在一起。

我也没走多远。我学会了打印行,耶!

import csv

with open('example.csv', 'rb') as f:
        reader = csv.reader(f)
        for row in reader:
                print row

我认为逻辑如下。

  • 导入.CSV。循环通过行。在
  • 将数据放入变量中。在
  • 输出最终产品(打印?)输入“输出文件”
  • 循环直到EOF?在

任何帮助都将不胜感激。


Tags: 文件csvinfo服务器脚本com管理员reader
1条回答
网友
1楼 · 发布于 2024-09-24 00:33:50

这样的事情应该行得通。在

对于像你这样的文件来说,CSV模块是多余的。在

我在这里使用的一些Python习惯用法:

  • dict(zip(keys, values))将键列表和值列表按拉链拉大;dict函数(或dict.update)可以将它们作为键-值对进行消化以添加到dict中
  • 映射表单字符串插值(%(foo)s)可以消化dict

defaults位就在那里,这样字符串插值就不会因丢失的值而窒息。适应你的需要。:)

一。在

if True:  # For testing   use the other branch to read from a file
    # Declare some test content in a string...
    input_content = """
Stan,Marsh,Stan Marsh,1001,899,smarsh,smarsh@info.com
Eric,Cartman,Eric Cartman,1002,898,ecartman,ecartman@info.com
    """.strip()
    # And use the StringIO module to create a file-like object from it.
    from StringIO import StringIO
    input_file = StringIO(input_content)
else:
    # Or just open the file as normal. In a short script like this,
    # one doesn't need to worry about closing the file - that will happen
    # when the script ends.
    input_file = open('example.csv', 'rb')


# Declare the fields in the order they are in the file.
# zip() will use this later with the actual fields from the file
# to create a dict mapping.
fields = ('FN', 'LN', 'NAME', 'UIDN', 'GIDN', 'CN', 'EMAIL')  # Fields, in order

# Declare a template for the LDIF file. The %(...)s bits will be
# later interpolated with the dict mapping created for each input row.
template = u"""
dn: cn=%(CN)s,ou=People,dc=domain,dc=com
cn: %(CN)s
gidnumber: 20
givenname %(FN)s
homedirectory /home/users/%(USER)s
loginshell: /bin/sh
objectclass: inetOrgPerson
objectclass: posixAccount
objectclass: top
sn: %(LN)s
uid: %(USERNAME)s
telephoneNumber: %(TELE)s
uidnumber: %(UIDN)s
userpassword: {CRYPT}mrpoo
mail: %(EMAIL)s
"""

for line in input_file:
    # Create `vals` with some default values. These would be overwritten
    # if the CSV data (and of course the declared fields) contain them.
    vals = {"USER": "XXX", "TELE": "XXX", "USERNAME": "XXX"}

    # line.strip().split() will turn the string line,
    # for example 'foo,baz,bar\n' (trailing new line `strip`ped out)
    # into the list ['foo', 'baz', 'bar'].
    # zipping it with, say, ['LN', 'FN', 'EMAIL'] would yield
    # [('LN', 'foo'), ('FN', 'baz'), ('EMAIL', 'bar')]   
    # ie. a list of tuples with a key and a value.
    # This can be used by the `dict.update` function to replace and augment
    # the default values declared above.

    vals.update(zip(fields, line.strip().split(",")))

    # Finally, use the interpolation operator % to merge the template with the
    # values for this line and print it to standard output.

    print template % vals

相关问题 更多 >