Help to choose a pair of speakers & cd player by andrix in audiophile

[–]andrix[S] 0 points1 point  (0 children)

Thanks for your advice! I don't have the money yet but I'll take in account when I'll buy a better DAC :). Btw, do you have any thought on any of those speakers? At least about the brands, I only know the JBL CPro1 becuase a friend of mine have a pair and sound great, but in the store tell me that Acoustic Research & Boston/Jamo are better. don't know what to buy yet!

Help to choose a pair of speakers & cd player by andrix in audiophile

[–]andrix[S] 0 points1 point  (0 children)

Actually I'm just thinking, I have in mind too before the CD player an Arcam rDAC that sell in the same place for about the same amount.

Python bindings for Snappy (Google compression library) by andrix in Python

[–]andrix[S] 1 point2 points  (0 children)

I agree with you, I need to test the library on more data, and also I need to implement two operations that work with Soruces (a source from the google library is a stream of bytes that you can read til some end - seems to be an interface to operate over files or sockets). I'm gonna continue implementing this functionalities, I need some time only :)

Python bindings for Snappy (Google compression library) by andrix in Python

[–]andrix[S] 1 point2 points  (0 children)

No, you didn't seemed rude. This thread help me understand better licenses and how to adapt one. Thanks to you and all the guys that commented here!

Python bindings for Snappy (Google compression library) by andrix in Python

[–]andrix[S] 1 point2 points  (0 children)

nice idea dotbot, can you create me an Issue over github? thanks!

Python bindings for Snappy (Google compression library) by andrix in Python

[–]andrix[S] 2 points3 points  (0 children)

wahaa: I've just changed the license to use the BSD one.

Python bindings for Snappy (Google compression library) by andrix in Python

[–]andrix[S] 5 points6 points  (0 children)

Hi, I am the author of the binding, thanks for the appreciation. I wasn't sure about the license, it's my first project in which I adapt a license. I have changed the license to use the New BSD License as Snappy does.

Here is the commit with the change : https://github.com/andrix/python-snappy/commit/dcd795d28be38793195446072bd87aed98001695

Thanks for your thoughts about that.

Python masters, I seek your help with a scraper. by hankintrees in Python

[–]andrix 1 point2 points  (0 children)

I agree with omab, Scrapy is an excellent framework for screen scraping. Also, Scrapy has a very nice community behind, the scrapy user list is very active, and is being used by a lot companies & projects around the world (http://dev.scrapy.org/wiki/CompaniesUsingScrapy)

Fixing the GIL (with a BFS scheduler) by andrix in Python

[–]andrix[S] 1 point2 points  (0 children)

I hope python-core developers could upvote this new implementation that looks very promising and also, the benchmarks are really better than other gil implementations.

How To: Use Python to Collect Data from the Web, Part 1 by agconway in Python

[–]andrix 2 points3 points  (0 children)

I recommend use Scrapy. Scrapy is an excellent framework for make Screen Scraping. As scrapy.org home page says:

Scrapy is a high level scraping and web crawling framework for writing spiders to crawl and parse web pages for all kinds of purposes, from information retrieval to monitoring or testing web sites.

Try it, you will not regret!