Metadata-Version: 2.1
Name: EBomb
Version: 1.2.1
Summary: Email Bomber
Home-page: https://github.com/NIKDISSV-Forever/EBomb
Author: Nikita (NIKDISSV)
Author-email: nikdissv.forever@protonmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.9
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: EasyProxies
Requires-Dist: pysocks
Requires-Dist: fake-useragent

#### Documentation in Russian

# EBomb - Спам на почту/ы

> pip install [EBomb](https://pypi.org/project/EBomb/)

```python
# EBomb/__init__.py
class EBomb:
    def __init__(self,
                 targets: list[str],
                 threads_count: int = None,
                 proxy: bool = True,
                 forever: bool = True,
                 verbose: bool = True): ...
```

```python
# EBomb/services.py
class Service:
    __slots__ = ('url', 'method', 'netloc')

    def __init__(self, url: str, method: str):
        ...

    def __repr__(self):
        ...

    def request(self, mail: str, proxies: Optional[EasyProxies.ProxyDescriptor] = None) -> Response:
        ...


services: list[Service] = [...]
```

## Ebomb/services.json

```json
[
  {
    "url": ...,
    "method": ...
  },
  ...
]
```

### CLI

> python -m Ebomb -h

