Git Product home page Git Product logo

Comments (2)

dijs avatar dijs commented on August 17, 2024

How are you using the library? Here is how I am using it successfully.

wiki()
      .search('kylie jenner')
      .then(res => res.results[0])
      .then(name => wiki().page(name))
      .then(page => page.fullInfo())
      .then(info => {
        console.log(info);
        done();
      })

Outputs

{ general:
   { name: 'Kylie Jenner',
     image: 'Kylie Jenner2 (cropped).png',
     caption: 'Jenner in 2017',
     birthName: 'Kylie Kristen Jenner',
     birthDate: { date: 1997-08-09T21:00:00.000Z, age: 20 },
     birthPlace: 'Los Angeles',
     residence: 'Hidden Hills, California',
     education: [ 'Sierra Canyon School', 'Laurel Springs School' ],
     occupation: 'flat list',
     yearsActive: '2007–present',
     television: [ 'Keeping Up with the Kardashians', 'Life of Kylie' ],
     parents: [ 'Caitlyn Jenner', 'Kris Jenner' ],
     partners: [ 'Tyga', 'Travis Scott' ],
     children: 'Stormi Webster',
     relatives:
      [ 'Kendall Jenner',
        'Kim Kardashian',
        'Kourtney Kardashian',
        'Khloé Kardashian',
        'Rob Kardashian',
        'Brandon Jenner',
        'Brody Jenner' ],
     website: 'http://thekyliejenner.com/' } }

Although. I do see a use case of offering a better find method for wiki that does this automatically...

I will implement that.

Hope this helps :)

from wiki.

dijs avatar dijs commented on August 17, 2024

Implemented and pushed in new version v4.7.0

wiki()
      .find('kylie jenner')
      .then(page => page.fullInfo())
      .then(info => {
        info.general.birthName.should.equal('Kylie Kristen Jenner');
        done();
      });

from wiki.

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.