Giter VIP home page Giter VIP logo

Comments (5)

zarino avatar zarino commented on July 3, 2024

Could you show me the python code you used to create the table and the rows in the first place?

from scraperwiki-python.

sean-duffy avatar sean-duffy commented on July 3, 2024

Sure, I'm just using the save() method to store each pair of values.

for i, subtext in zip([i for i in range(60) if i % 2 != 0], subtexts):
    title = titles[i].cssselect('a')[0].text_content()
    if 'points' in subtext.text_content():
        score_text = subtext.cssselect('span')[0].text_content()
        score = int(score_text[:score_text.find('p'):])
    else:
        score = 0

    scraperwiki.sql.save(['title'], {'title': title, 'score': score})

from scraperwiki-python.

zarino avatar zarino commented on July 3, 2024

What happens if you run:

print scraperwiki.sql.select('sql from sqlite_master')[0]['sql']

(assuming you only have one table)

from scraperwiki-python.

sean-duffy avatar sean-duffy commented on July 3, 2024

I get this:

CREATE TABLE `swdata` (
            `score` text,
            `title` text)

So indeed the problem must be the score column taking on a 'text' type. Is the table_info() method no longer a part of the library?

from scraperwiki-python.

 avatar commented on July 3, 2024

No, there's no table_info function any more.

On Fri, Jul 05, 2013 at 11:14:20AM -0700, Sean Duffy wrote:

I get this:

REATE TABLE `swdata` (
            `score` text
          , `title` text)

So indeed the problem must be the score column taking on a 'text' type. Is the table_info() method no longer a part of the library?


Reply to this email directly or view it on GitHub:
#24 (comment)

from scraperwiki-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.