Federico Minutoli

Results 57 comments of Federico Minutoli

> Hey @mingu600, > > There is currently no way of achieving this with `poke-env`. @szymonWojdat and I both looked into it last year, but we did not find an...

> > 1. Freeze the game state to a compatible JSON > > 2. Start a new game via command line calling the simulator API with the frozen state >...

> Animations are done on the [web client's side](https://github.com/smogon/pokemon-showdown-client), poke-env is running a headless client, meaning no HTML/CSS is involved. Thanks for the clarification, @szymonWojdat. > > Can confirm this...

> I am trying to make it work through virtual display. Hi @LanLan69, check out [this](https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/108#issuecomment-1171744882) piece of code I put together two years ago to run the undetected Chrome...

Any plans of merging that in the main codebase, @theonlyamos?

@abi, makes sense. For now, I will deploy it locally and wrap it with an API layer. I may even share it here.

@VinciGit00, is [that](https://github.com/VinciGit00/Scrapegraph-ai/blob/main/scrapegraphai/nodes/fetch_node.py#L79) where proxy rotation is supposed to operate? seems not to be used in the code base right now, replaced by manually passing a proxy IP address. ```python...

@VinciGit00 I think the proxy is more of a graph attribute than a node attribute. are we heading towards having some graph configs common to all nodes?

@VinciGit00, so what's the role you are envisioning for params to be common in #125?

@VinciGit00, something seems off in the proxy rotation branching, https://github.com/VinciGit00/Scrapegraph-ai/blob/main/scrapegraphai/nodes/fetch_node.py#L79. ```python . . . if self.node_config is not None and self.node_config.get("endpoint") is not None: loader = AsyncChromiumLoader( [source], proxies={"http": self.node_config["endpoint"]},...