Giter Club home page Giter Club logo

Comments (7)

alabeduarte avatar alabeduarte commented on August 28, 2024

Hi @adantl

Do you have an example?
Just the feed url with your code snippet would help

Thanks!

from feedparser-promised.

alabeduarte avatar alabeduarte commented on August 28, 2024

I just saw that you asked a question directly on feedparser repository. Hopefully the answer would soulve the problem.

Please, feel free to send a pull request if you like.

from feedparser-promised.

adantoscano avatar adantoscano commented on August 28, 2024

const options = {
uri: 'http://www.sport.es/es/rss/last_news/rss_msn.xml',
timeout: 3000
}
feedparser.parse(options).then( (items) => {
items.forEach( (item) => {
console.log(item.summary);
});
}).catch( (error) => {
console.log('error: ', error);
});

Here's my feed and code. I tried the feedparser solution but they use iconv-lite and that only change all � char for the same, not the right one.

from feedparser-promised.

alabeduarte avatar alabeduarte commented on August 28, 2024

Yeah, I looked at incov-lite as well.

const feedparser = require('feedparser-promised');
const iconv = require('iconv-lite');

const options = {
  uri: 'http://www.sport.es/es/rss/last_news/rss_msn.xml',
  timeout: 3000
}

feedparser.parse(options).then( (items) => {
  items.forEach( (item) => {
    const encodedSummary = iconv.decode(new Buffer(item.summary), 'iso-8859-1');
    console.log(encodedSummary);
  });
}).catch( (error) => {
  console.log('error: ', error);
});

I'll research a little bit more

from feedparser-promised.

adantoscano avatar adantoscano commented on August 28, 2024

That code for example, convert � to �. Maybe we have to use incov-lite inside feedparser module

from feedparser-promised.

alabeduarte avatar alabeduarte commented on August 28, 2024

Hi @adantl

Any luck with the encoding issue? Have you talked with feedparser contributors about use incov-lite inside of it?

from feedparser-promised.

alabeduarte avatar alabeduarte commented on August 28, 2024

Hey @adantl

Any updates on your investigations? I was wondering to close this issue since it seems is not an issue with feedparser-promised. If we find something that we could do or even update with the new version of node parser we could open it again, what do you think?

I'll close it but let me know if you think differently then I will be happy to open it again.

Cheers

from feedparser-promised.

Related Issues (18)

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.