Sponsored Content
Full Discussion: Popular Plugins && SVN
Top Forums Programming Popular Plugins && SVN Post 302957156 by metallica1973 on Thursday 8th of October 2015 10:03:50 AM
Old 10-08-2015
Popular Plugins && SVN

Forgive me if this is a rather stupid but I am writing some code using Python for a project at work and was wondering if there was a way to download the entire "Popular" plugins directory in a single shot? I currently have to to look at 34 pages:

https://wordpress.org/plugins/browse/popular/
https://wordpress.org/plugins/browse/popular/2
...

and parse data that way but is really inefficient. I see that I can check stuff out via svn

https://wordpress.org/plugins/about/svn/

and I can see all the plugins as a whole via:

https://plugins.svn.wordpress.org/

But is there a better way that I can accomplish my goal?

Thank you in advance!

---------- Post updated 10-08-15 at 10:03 AM ---------- Previous update was 10-07-15 at 03:44 PM ----------

I guess I should clarify what I am asking. I have already written my python code to scrape what I need from the plugins sites and works great but at my job they think that its inefficient to send many HTTP GET requests to the site and would prefer that I obtain all the plugin information another way, then simply searching through the results, parse the data that I need. So I can download all the plugins via SVN:

svn co https://plugins.svn.wordpress.org/

but I would prefer to just download plugins that are considered popular like what you see from the url:

https://wordpress.org/plugins/browse/popular/

Can I do an svn check of just the popular directory? Ex.

svn co https://popular.plugins.svn.wordpress.org

I know the about url doesnt exist but if it does what is it?

Thank you in advance!

Last edited by metallica1973; 10-08-2015 at 12:23 PM..
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Search for & edit rows & columns in data file and pipe

Dear unix gurus, I have a data file with header information about a subject and also 3 columns of n rows of data on various items he owns. The data file looks something like this: adam peter blah blah blah blah blah blah car 01 30 200 02 31 400 03 57 121 .. .. .. .. .. .. n y... (8 Replies)
Discussion started by: tintin72
8 Replies

2. UNIX for Dummies Questions & Answers

Problem with xterm & tcsh & sourcing a script in a single command

Hi friends, I have a script that sets the env variable path based on different conditions. Now the new path variable setting should not done in the same terminal or same shell. Only a new terminal or new shell should have the new path env variable set. I am able to do this only as follows: >cd... (1 Reply)
Discussion started by: sowmya005
1 Replies

3. Shell Programming and Scripting

Find & Replace string in multiple files & folders using perl

find . -type f -name "*.sql" -print|xargs perl -i -pe 's/pattern/replaced/g' this is simple logic to find and replace in multiple files & folders Hope this helps. Thanks Zaheer (0 Replies)
Discussion started by: Zaheer.mic
0 Replies

4. Shell Programming and Scripting

PHP read large string & split in multidimensional arrays & assign fieldnames & write into MYSQL

Hi, I hope the title does not scare people to look into this thread but it describes roughly what I'm trying to do. I need a solution in PHP. I'm a programming beginner, so it might be that the approach to solve this, might be easier to solve with an other approach of someone else, so if you... (0 Replies)
Discussion started by: lowmaster
0 Replies

5. Shell Programming and Scripting

replace & with & xml file

Hello All I have a xml file with many sets of records like this <mytag>mydata</mytag> <tag2>data&</tag2> also same file can be like this <mytag>mydata</mytag> <tag2>data&</tag2> <tag3>data2&amp;data3</tag3> Now i can grep & and replace with &amp; for whole file but it will replace all... (4 Replies)
Discussion started by: lokaish23
4 Replies

6. Shell Programming and Scripting

Replace & sign to &amp word

Hi, I have text file abc.txt. In this file, I have the following data. Input: Mr Smith &amp Mrs Smith Mr Smith &apos Mrs Smith Mr Smith & Mrs Smith Mr Smith& Mrs Smith Mr Smith &Mrs Smith Output: Mr Smith &amp Mrs Smith Mr Smith &apos Mrs Smith Mr Smith &amp Mrs Smith Mr Smith&amp... (4 Replies)
Discussion started by: naveed
4 Replies

7. Shell Programming and Scripting

Sort a the file & refine data column & row format

cat file1.txt field1 "user1": field2:"data-cde" field3:"data-pqr" field4:"data-mno" field1 "user1": field2:"data-dcb" field3:"data-mxz" field4:"data-zul" field1 "user2": field2:"data-cqz" field3:"data-xoq" field4:"data-pos" Now i need to have the date like below. i have just... (7 Replies)
Discussion started by: ckaramsetty
7 Replies

8. Shell Programming and Scripting

GNU & BSD Makefile Directives & Conditions Compatibility

Firstly, I would like to apologize if this is not the appropriate sub-forum to post about GNU/BSD makefile scripting. Though my code is in C++, because I am focusing on the makefile I thought it would go better in shell scripting. Please correct me if I am wrong. Secondly, I am not interested in... (0 Replies)
Discussion started by: AntumDeluge
0 Replies

9. Shell Programming and Scripting

SFTP Shell Script Get & Delete && Upload & Delete

Hi All, Do you have any sample script, - auto get file from SFTP remote server and delete file in remove server after downloaded. - only download specify filename - auto upload file from local to SFTP remote server and delete local folder file after uploaded - only upload specify filename ... (3 Replies)
Discussion started by: weesiong
3 Replies
SVN::Dump::Reader(3pm)					User Contributed Perl Documentation				    SVN::Dump::Reader(3pm)

NAME
SVN::Dump::Reader - A Subversion dump reader SYNOPSIS
# !!! You should use SVN::Dump, not SVN::Dump::Reader !!! use SVN::Dump::Reader; my $reader = SVN::Dump::Reader->new( $fh ); my $record = $reader->read_record(); DESCRIPTION
The "SVN::Dump::Reader" class implements a reader object for Subversion dumps. METHODS
The following methods are available: new( $fh, \%options ) Create a new "SVN::Dump::Reader" attached to the $fh filehandle. The only supported option is "check_digest", which is disabled by default. read_record( ) Read and return a new SVN::Dump::Record object from the dump filehandle. If the option "check_digest" is enabled, this method will recompute the digests for a dump without deltas, based on the information in the "Text-content-md5" and "Text-content-sha1" headers (if the corresponding "Digest::" module is available). In case of a mismatch, the routine will "die()" with an exception complaining about a "checksum mismatch". read_header_block( ) Read and return a new SVN::Dump::Headers object from the dump filehandle. read_property_block( ) Read and return a new SVN::Dump::Property object from the dump filehandle. read_text_block( ) Read and return a new SVN::Dump::Text object from the dump filehandle. The "read_..." methods will die horribly if asked to read inconsistent data from a stream. SEE ALSO
SVN::Dump, SVN::Dump::Headers, SVN::Dump::Property, SVN::Dump::Text. COPYRIGHT
Copyright 2006-2011 Philippe 'BooK' Bruhat, All Rights Reserved. LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2011-03-22 SVN::Dump::Reader(3pm)
All times are GMT -4. The time now is 08:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy