Top Level Name for Perl Module

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Top Level Name for Perl Module

    Hello,

    I have a perl module that facilitates file downloads. Researchers often
    need to download some files off the web on daily bases. These files
    could be anything such as text documents, power point slides, word
    docs, or excel sheets. The program reads an XML input file, where
    certain rules specify which files to download. It creates a user
    specified directory structure, creates daily directories, and downloads
    the files and stores them.

    The name of the module is Cioffero. I would like to know, given the
    description above, what should be the top name for this type of module.
    I was thinking along the lines of ExtUtils. Any suggestions?

    -Sincerely,
    Singh T. Junior

    SinghTJunior Guest

  2. Similar Questions and Discussions

    1. New pure perl multi-level hash/array DBM
      Hey all, I have just completed a very unique DBM, written in pure perl, and submitted it to CPAN. It has true multi-level hash/array support...
    2. The True Path to Learning Perl [OT] Education Level
      Back to semantics, define "Programmer". Your definition of programmer, if it requires any knowledge of UML, is so strict that it will not work in...
    3. The True Path to Learning Perl [OT] Education Level
      On Dec 8, 2003, at 11:18 AM, Jason Dusek wrote: It is not so much a shot at 'snobbery' as it is at the lack of 'intellectual rigor' that the...
    4. The True Path to Learning Perl [OT] Education Level
      please let's do a split(/\s/, "Perl Programmer"). this return one array with two scalar: Perl Programmer that's why -----Original...
    5. The True Path to Learning Perl [OT] Education Level
      I think that we've drifted a little from the topic, which was more or less to get a feel for the people on this list and where they are in their...
  3. #2

    Default Re: Top Level Name for Perl Module

    "SinghTJunior" <singhtjunior@gmail.com> wrote:
    > Hello,
    >
    > I have a perl module that facilitates file downloads. Researchers often
    > need to download some files off the web on daily bases. These files
    > could be anything such as text documents, power point slides, word
    > docs, or excel sheets. The program reads an XML input file, where
    > certain rules specify which files to download. It creates a user
    > specified directory structure, creates daily directories, and downloads
    > the files and stores them.
    >
    > The name of the module is Cioffero. I would like to know, given the
    > description above, what should be the top name for this type of module.
    > I was thinking along the lines of ExtUtils. Any suggestions?
    WWW

    or

    Net

    I also recommend to give it a better name, I have no idea what a Cioffero
    is.

    WWW::Task::Download

    (leaves room for Upload, Mirror, etc. :-) )

    WWW::Download::XMLScripted

    ?

    --
    John Bokma Freelance software developer
    &
    Experienced Perl programmer: [url]http://castleamber.com/[/url]
    John Bokma Guest

  4. #3

    Default Re: Top Level Name for Perl Module

    John Bokma,

    Very good suggestion. I will use

    Net::Download::XMLScripted

    -Thank you,
    Singh T. Junior

    John Bokma wrote:
    > "SinghTJunior" <singhtjunior@gmail.com> wrote:
    >
    > > Hello,
    > >
    > > I have a perl module that facilitates file downloads. Researchers often
    > > need to download some files off the web on daily bases. These files
    > > could be anything such as text documents, power point slides, word
    > > docs, or excel sheets. The program reads an XML input file, where
    > > certain rules specify which files to download. It creates a user
    > > specified directory structure, creates daily directories, and downloads
    > > the files and stores them.
    > >
    > > The name of the module is Cioffero. I would like to know, given the
    > > description above, what should be the top name for this type of module.
    > > I was thinking along the lines of ExtUtils. Any suggestions?
    >
    > WWW
    >
    > or
    >
    > Net
    >
    > I also recommend to give it a better name, I have no idea what a Cioffero
    > is.
    >
    > WWW::Task::Download
    >
    > (leaves room for Upload, Mirror, etc. :-) )
    >
    > WWW::Download::XMLScripted
    >
    > ?
    >
    > --
    > John Bokma Freelance software developer
    > &
    > Experienced Perl programmer: [url]http://castleamber.com/[/url]
    SinghTJunior Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139