Voith

Results 36 comments of Voith

I have opened https://github.com/ethereum/populus/pull/464 to fix this issue.

Need #134 merged to fix this issue as the fix submitted upstream needs populus from the master branch. Once #134 is merged I'll submit a PR to increase the timeout...

I need this feature. I will write docs for it but I don't have bandwidth for the next two weeks.

cool. I'll wait for ethereum/py-evm#1299 to land then!

@sibiryakov Code wise Looks good to me. @isra17 has a good suggestion. I would like to know the pros and cons of your approach vs @isra17's suggestion.

Hi @vedantrathore Have a look at [this](https://github.com/zzzeek/sqlalchemy/blob/8342ca6c6932b8a30f4ea9650721244eeda35d51/lib/sqlalchemy/sql/sqltypes.py#L1427-L1504) code in sqlalchemy to see how `PickleType` has been implemented. Try to understand how that works and try to implement something similar for...

I had a similar use case today. This is what I came up with. I haven't fully tested this. But IMO, this is what is needed. ```python from msgpack import...

Frontera calls the `make_requests_from_url` method of the spider to create a Request from the seeds provided. have a look here. https://github.com/scrapinghub/frontera/blob/master/frontera/contrib/scrapy/middlewares/seeds/__init__.py#L18. You could do: ```python class YourSpider(Spider): def make_requests_from_url(self, url):...

Hi @MuhammadRahman-awin I'm not very sure if splash works very well with frontera. I'm not a splash user myself, so I'm not very familiar with the request/response cycle of splash....

Also have a look at https://github.com/scrapinghub/frontera/issues/232