Code Monkey home page Code Monkey logo

Comments (3)

ojii avatar ojii commented on May 14, 2024 2

You can't pass a driver to a driver. Try this instead

    service = services.Geckodriver(log_file=os.devnull)
    async with get_session(service, Firefox()) as session:

from arsenic.

ojii avatar ojii commented on May 14, 2024

See this comment and this comment in the linked issue. the log_file argument to a driver only controls the output of the driver, not of arsenic itself. arsenic uses structlog for logging, so you need to follow its instructions for controlling output.

from arsenic.

bruckbond avatar bruckbond commented on May 14, 2024

See this comment and this comment in the linked issue. the log_file argument to a driver only controls the output of the driver, not of arsenic itself. arsenic uses structlog for logging, so you need to follow its instructions for controlling output.

using construction like this:

    service = services.Geckodriver(log_file=os.devnull)
    async with get_session(Geckodriver(service), Firefox()) as session:

I receive this output:

Traceback (most recent call last):
  File "all_in_one.py", line 325, in pushka
    await parser()
  File "all_in_one.py", line 371, in parser
    async with get_session(Geckodriver(service), Firefox()) as session:
  File "/usr/local/lib/python3.7/dist-packages/arsenic/__init__.py", line 16, in __aenter__
    self.session = await start_session(self.service, self.browser, self.bind)
  File "/usr/local/lib/python3.7/dist-packages/arsenic/__init__.py", line 28, in start_session
    driver = await service.start()
  File "/usr/local/lib/python3.7/dist-packages/arsenic/services.py", line 96, in start
    self.log_file,
  File "/usr/local/lib/python3.7/dist-packages/arsenic/services.py", line 34, in subprocess_based_service
    process = await impl.start_process(cmd, log_file)
  File "/usr/local/lib/python3.7/dist-packages/arsenic/subprocess.py", line 57, in start_process
    *cmd, stdout=log_file, stderr=log_file, stdin=DEVNULL
  File "/usr/lib/python3.7/asyncio/subprocess.py", line 217, in create_subprocess_exec
    stderr=stderr, **kwds)
  File "/usr/lib/python3.7/asyncio/base_events.py", line 1533, in subprocess_exec
    bufsize, **kwargs)
  File "/usr/lib/python3.7/asyncio/unix_events.py", line 190, in _make_subprocess_transport
    **kwargs)
  File "/usr/lib/python3.7/asyncio/base_subprocess.py", line 37, in __init__
    stderr=stderr, bufsize=bufsize, **kwargs)
  File "/usr/lib/python3.7/asyncio/unix_events.py", line 763, in _start
    universal_newlines=False, bufsize=bufsize, **kwargs)
  File "/usr/lib/python3.7/subprocess.py", line 728, in __init__
    errread, errwrite) = self._get_handles(stdin, stdout, stderr)
  File "/usr/lib/python3.7/subprocess.py", line 1359, in _get_handles
    c2pwrite = stdout.fileno()
AttributeError: 'Geckodriver' object has no attribute 'fileno'

from arsenic.

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.