Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bukowa/wporgfkreview
C# script that fetches all the plugins (with reviews,authors,join date) a WordPress.org user has contributed to for fake review analysis
https://github.com/bukowa/wporgfkreview
fake-reviews parsing plugins-wordpress reviews scraping wordpress-org
Last synced: 6 days ago
JSON representation
C# script that fetches all the plugins (with reviews,authors,join date) a WordPress.org user has contributed to for fake review analysis
- Host: GitHub
- URL: https://github.com/bukowa/wporgfkreview
- Owner: bukowa
- Created: 2024-10-17T22:14:32.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-10-17T23:00:47.000Z (3 months ago)
- Last Synced: 2024-11-07T14:12:33.942Z (about 2 months ago)
- Topics: fake-reviews, parsing, plugins-wordpress, reviews, scraping, wordpress-org
- Language: Jupyter Notebook
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wporgfkreview
Script, given wordpress.org profile URL, fetches all the plugins the user has contributed to and then fetches the reviews for each plugin along with the date of the review and the date of the author's registration on wordpress.org.
Saves the results in a JSON file for later analysis.For example analysis see [Jupyter Notebook](./example-output/analyze.ipynb)
```json
[
{
"Url": "https://wordpress.org/plugins/tattoo-shop-manager/",
"Reviews": []
},
{
"Url": "https://wordpress.org/plugins/wp-live-debug/",
"Reviews": []
},
{
"Url": "https://wordpress.org/plugins/gdpr-data-request-form/",
"Reviews": [
{
"Url": "https://wordpress.org/support/topic/essential-309/",
"ReviewCreated": "2022-09-01T19:59:00",
"AuthorUrl": "https://wordpress.org/support/users/momo-fr/",
"AuthorCreated": "2013-08-09T00:00:00",
"ReviewsWritten": 119
},
{
"Url": "https://wordpress.org/support/topic/essential-280/",
"ReviewCreated": "2021-08-03T09:17:00",
"AuthorUrl": "https://wordpress.org/support/users/webaxones/",
"AuthorCreated": "2014-05-08T00:00:00",
"ReviewsWritten": 17
},
...
```It's my first web scraping project in C#. It's ugly and slow, but it works.