Any idea how to do this in Python?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Lad

    #1

    Any idea how to do this in Python?

    In a web application users can post some information. I would like to
    link each posting with a "weight of importance" for a user, depending
    on a keywords in the posting.
    For example, I know that a user A is interested in Nokia mobiles while
    user B in Siemens mobiles.
    So, if a user A is signed, he would see postings with more Nokia
    information FIRST, while B user will see FIRST information about
    Siemens mobiles
    How can be that done in Python?
    Thank you for any idea.
    L.

  • Lad

    #2
    Re: Any idea how to do this in Python?


    Dennis,
    Thank you for your reply
    You say:
    >Pretend you are the computer/application/etc. How would YOU
    perform such a ranking?
    That is what I do not know , how to perform such ranking.
    Do you have any idea?

    Regards,
    Lad.

    Comment

    • jmdeschamps@gmail.com

      #3
      Re: Any idea how to do this in Python?


      Lad wrote:
      Dennis,
      Thank you for your reply
      You say:
      Pretend you are the computer/application/etc. How would YOU
      perform such a ranking?
      That is what I do not know , how to perform such ranking.
      Do you have any idea?
      >
      Regards,
      Lad.
      take a piece of paper to *play* the use-case you wrote about.

      Do things one step at a time, and figure what is needed,

      Example:
      1- a user is on a web page # ok I need a web page
      2- a user sends info to the server # ok the web page needs a input
      widget of sorts AND I need a server app
      3- analyse (or decide ) what type of info the user may send (selected
      choices, free text, etc)
      4- the user must be identified in some way (so to discriminate him from
      others), so the also must be that type of input...

      etc, etc
      At the end you will have a better picture of things required - then you
      build them ;-)

      Jean-Marc

      Comment

      • Theerasak Photha

        #4
        Re: Any idea how to do this in Python?

        On 17 Oct 2006 02:56:45 -0700, Lad <python@hope.cz wrote:
        >
        Dennis,
        Thank you for your reply
        You say:
        Pretend you are the computer/application/etc. How would YOU
        perform such a ranking?
        That is what I do not know , how to perform such ranking.
        Do you have any idea?
        The details are very sketchy, but if it's just one item in particular
        that's being favored, you could just have something like 'Google
        sponsored ads', where there's a small box with links to everything
        related to Siemens Mobile at the top.

        (keke, he said 'Siemens', lol)

        -- Theerasak

        Comment

        Working...