How to get Google page rank and number of searches in Excel sheet?

房东的猫 提交于 2019-12-24 10:57:24

问题


I have a link in one column and, based on it, I want

  1. Number of Google searches in column 2
  2. Page rank of first result in column 3

I know this can be done, as I saw a friend pulling google search result right in Excel. If anyone knows, please share how I could do that.


回答1:


If I correctly interpret your question, one of the tasks you had to do is

How do I get programmatically the Google page rank for a list of URLs?

You can find the code to do this in this CodeProject article: Request Google´s Pagerank programmatically

Regarding the Excel part: it depends which programming framework or platforms you could use. You could use to create a .NET extension for Excel using the Microsoft Visual Studio Tools for Office.




回答2:


From Excel there is Data->Get External Data->New Web Query. Is this what you want?




回答3:


You have two options, both of which are unfortunately poorly documented.

If you are comfortable in C/C++, you can write a special DLL called an "XLL" that you can call during Excel runtime. There is some sparse documentation available. Note that this stuff isn't very fun to use.

If you prefer .NET, there is a binding for the entire Office suite outlined here that allows you to write COM-based methods that you can call from Office. It is intended for automation, but you can write any managed code you want and have Excel call into it.

There is also what Remou just suggested; I don't actually own a copy of Excel to test that out, but it may be the easiest option.




回答4:


By link i meant keywords and not URL. I want to put a keyword in one cell and pull number of searches and page rank in adjacent cells.

I tried doing the same with web query in excel but i can only reach till the number of searches. that too not in the proper cell (trying to figure out). But i have no clue about how to get the pageranks.

I am not that tech savvy to code a binder or plugin for myself. Although i am checking the link by splattne. Please focus more light on it. Is it gonna be time consuming if i try to make this one..?

Regards Thinkjayant




回答5:


There are some nice plugins for this (in various languages) on GitHub:

http://github.com/search?langOverride=&language=&q=pagerank&repo=&start_value=1&type=Repositories&x=0&y=0




回答6:


I have a PR checker functions in my Excel plugin "SeoTools".

http://nielsbosma.se/projects/seotools/



来源:https://stackoverflow.com/questions/396355/how-to-get-google-page-rank-and-number-of-searches-in-excel-sheet

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!