-1

我有一个巨大的 HTML 表(大约 500,000 行),需要将其转换为 JSON 文件。该表如下所示:

<table>
<tr>
<th>Id</th>
<th>Timestamp</th>
<th>Artist_Name</th>
<th>Tweet_Id</th>
<th>Created_at</th>
<th>Tweet</th>
<th>User_name</th>
<th>User_Id</th>
<th>Followers</th>
</tr>
<tr>
<td>1</td>
<td>2013-06-07 16:00:17</td>
<td>Kelly Rowland</td>
<td>343034567793442816</td>
<td>Fri Jun 07 15:59:48 +0000 2013</td>
<td>So has @MissJia already discussed this Kelly Rowland Dirty Laundry song? I ain't trying to go all through her timelime...</td>
<td>Nicole Barrett</td>
<td>33831594</td>
<td>62</td>
</tr>
<tr>
<td>2</td>
<td>2013-06-07 16:00:17</td>
<td>Kelly Rowland</td>
<td>343034476395368448</td>
<td>Fri Jun 07 15:59:27 +0000 2013</td>
<td>RT @UrbanBelleMag: While everyone waits for Kelly Rowland to name her abusive ex, don't hold your breath. But she does say he's changed: ht…&lt;/td>
<td>A.J.</td>
<td>24193447</td>
<td>340</td>
</tr>

我想创建一个看起来像这样的 JSON 文件:

{'data': [
  {
   'text': 'So has @MissJia already discussed this Kelly Rowland Dirty Laundry song? I ain't trying to go all through her timelime...', 
   'id': 1, 
   'tweet_id': 343034567793442816
  },
  {
   'text': 'RT @UrbanBelleMag: While everyone waits for Kelly Rowland to name her abusive ex, don't hold your breath. But she does say he's changed: ht…', 
   'id': 2, 
   'tweet_id': 343034476395368448
  }
]}

也许包括更多的变量,但这应该是自我解释的。

我已经研究了几个选项,但大多数情况下我的 HTML 表太大了。我看到很多人推荐 jQuery。考虑到我的桌子的大小,这对我有意义吗?如果有合适的 Python 选项,我会非常赞成,因为到目前为止我的大部分代码都是用 Python 编写的。

4

3 回答 3

0

这是示例代码。

var tbl = $('table tr:has(td)').map(function(i, v) {
var $td =  $('td', this);
    return {
             Id: $td.eq(0).text(),
             Timestamp: $td.eq().text(),
             Artist_Name: $td.eq(2).text(),
             Tweet_Id: $td.eq(3).text()               
             Tweet: $td.eq(4).text()              
             User_name: $td.eq(5).text()               
             User_Id: $td.eq(6).text()                
             Followers: $td.eq(7).text()                
           }
}).get();
于 2013-07-04T10:14:52.143 回答
0

你在用php吗?如果是这样,您可以使用 HTML DOM 解析和 json_encode() 来做一些事情。

如果您想使用 jquery / javascript,这将太大而无法处理 - 有可能,但使用 js 处理那么多数据并不是很好。但是,如果你只做一次,并且你真的下定决心要使用 JS——那么在 SO 上有一个类似的问题......

看看这个小提琴...

http://jsfiddle.net/s4tyk/

var myRows = [];
var headersText = [];
var $headers = $("th");

// Loop through grabbing everything
var $rows = $("tbody tr").each(function(index) {
  $cells = $(this).find("td");
  myRows[index] = {};

  $cells.each(function(cellIndex) {
    // Set the header text
    if(headersText[cellIndex] === undefined) {
      headersText[cellIndex] = $($headers[cellIndex]).text();
    }
    // Update the row object with the header/cell combo
    myRows[index][headersText[cellIndex]] = $(this).text();
  });    
});

// Let's put this in the object like you want and convert to JSON (Note: jQuery will also do this for you on the Ajax request)
var myObj = {
    "myrows": myRows
};
alert(JSON.stringify(myObj));

这是 如何使用javascript将下表转换为JSON的问题?

如果您需要有关 js 的帮助,请询问,但这应该可以帮助您。

于 2013-07-04T10:16:10.970 回答
0

使用 Python 和lxml 包,您可以解析 HTML

import lxml.html as LH
import collections
import itertools as IT
import json

Row = collections.namedtuple(
    'Row',
    'id timestamp artist tweet_id created_at tweet user_name user_id, followers')

filename = '/tmp/test.html'
root = LH.parse(filename)
data = []
result = {'data': data}
for row in IT.starmap(Row, zip(*[iter(root.xpath('//tr/td/text()'))]*9)):
    data.append({'text':row.tweet, 'id':row.id, 'tweet_id':row.tweet_id})

with open('/tmp/test.json', 'w') as f:
    json.dump(result, f, indent=2)

一个带有 500K 标签的文件大约需要 50 秒,<tr>并且需要大约 910M RAM(将 HTML 加载到 DOM 中root = LH.parse(filename))。

将 json 文件加载到 Python 字典中大约需要 2 秒:

In [14]: time x = json.load(open('/tmp/test.json'))
CPU times: user 1.80 s, sys: 0.04 s, total: 1.84 s
Wall time: 1.85 s
于 2013-07-04T10:23:10.417 回答