Giter Club home page Giter Club logo

Comments (5)

mauricelambert avatar mauricelambert commented on June 9, 2024 1

Thanks for the issue ! I debug that, it's just an error in the directory/filename.

from spyware.

mauricelambert avatar mauricelambert commented on June 9, 2024 1

I commit and send on pypi a new version that fix the bug.

You can try it with:

pip install --upgrade SpyWare
SpyWare

from spyware.

windowshopr avatar windowshopr commented on June 9, 2024

Now here's a new one for ya!

PS C:\Users\...\OneDrive\Desktop\Hacking> SpyWare
Traceback (most recent call last):
  File "c:\users\...\appdata\local\programs\python\python3\lib\site-packages\SpyWare\__init__.py", line 58, in <module>
    import AudioLogger
ModuleNotFoundError: No module named 'AudioLogger'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "c:\users\...\appdata\local\programs\python\python3\lib\runpy.py", line 194, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "c:\users\...\appdata\local\programs\python\python3\lib\runpy.py", line 87, in _run_code
    exec(code, run_globals)
  File "C:\Users\...\AppData\Local\Programs\Python\Python3\Scripts\SpyWare.exe\__main__.py", line 4, in <module>
  File "c:\users\...\appdata\local\programs\python\python3\lib\site-packages\SpyWare\__init__.py", line 69, in <module>
    from . import DomainsLogger
  File "c:\users\...\appdata\local\programs\python\python3\lib\site-packages\SpyWare\DomainsLogger\__init__.py", line 58, in <module>
    from .DomainsLogger import (
  File "c:\users\...\appdata\local\programs\python\python3\lib\site-packages\SpyWare\DomainsLogger\DomainsLogger.py", line 315, in <module>
    class CacheAppData:
  File "c:\users\...\appdata\local\programs\python\python3\lib\site-packages\SpyWare\DomainsLogger\DomainsLogger.py", line 328, in CacheAppData
    def domains_generator(self, directory: str) -> Iterator[List[bytes]]:
TypeError: 'ABCMeta' object is not subscriptable

from spyware.

mauricelambert avatar mauricelambert commented on June 9, 2024

Are you sure you are in Python 3.10 ?

~# python3.10 -c "from collections.abc import Iterator; print(Iterator[str])"
collections.abc.Iterator[str]
~# python3.8 -c "from collections.abc import Iterator; print(Iterator[str])"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: 'ABCMeta' object is not subscriptable
~#

This code should work in python 3.10.

I will fix it using typing.Iterable:

~# python3.8 -c "from typing import Iterable; print(Iterable[str])"
typing.Iterable[str]
~#

from spyware.

mauricelambert avatar mauricelambert commented on June 9, 2024

I commit and send on pypi a new version that fix the bug.

You can try it with:

pip install --upgrade SpyWare
SpyWare

from spyware.

Related Issues (4)

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.