Anna Kozyreva

Results 11 comments of Anna Kozyreva

Hi! Totally agree. I've got already deprecation warnings on Python 3.10.2 : ``` venv/lib/python3.10/site-packages/pyftpdlib/handlers.py:5 /home/akozyreva/projects/......./pyftpdlib/handlers.py:5: DeprecationWarning: The asynchat module is deprecated. The recommended replacement is asyncio import asynchat ```

Hi! You need to specify explicitly path to powershell, for example: ``` try (PowerShell powerShell = PowerShell.openSession("C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" )) { PowerShellResponse response = powerShell.executeCommand("Get-Process"); } catch(PowerShellNotAvailableException ex) { System.out.println(ex); } ```

Hi @hagaram ! I implemented your fix on Manjaro GNOME. I'd like to say, that mouse works quite better now, but after ~8 hours disconnect happens and scrolling stops working....

Hi @RicardoEPRodrigues . I installed your update. It's better, than it was before, but connect is lost after ~ 8 hours and scrolling is not working after re-connection. Is it...

@RicardoEPRodrigues yes, it takes effect, thanks! But you have no issues with disappear of scrolling, haven't you?

Hi @oz123 ! Thanks for so quick answer! Could you please tell me, which ports I can use safely for that? I know, that I can use 2121. What else?

Hi @oz123 ! Thanks for the answer! Yes, technically it's possible, but if you try to run these 2 ftp servers, system can confuse them - despite 2 different ports,...

Hi @oz123 ! here is my code ``` import pytest @pytest.fixture def ftp_server(ftpserver): class ThingFactory: def get(self): return ftpserver return ThingFactory() def test_thing(ftp_server): thing1 = ftp_server.get() print(thing1.get_login_data()) thing2 = ftp_server.get()...

Hi @oz123 ! I created, as you adviced. ``` from ftplib import FTP import pytest from pytest_localftpserver.servers import PytestLocalFTPServer @pytest.fixture(scope="function") def ftpserver_from(request): server = PytestLocalFTPServer() request.addfinalizer(server.stop) return server @pytest.fixture(scope="function") def...

Hi @oz123 ! Please no worries, I'm happy, that somebody tries to help me. Did you run your `test_ftp`? It fails once in a while(not every time), because of authentication...