osint_scraper.scripts.recon_handler.recon_handler - python examples

Here are the examples of the python api osint_scraper.scripts.recon_handler.recon_handler taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

8 Examples 7

3 View Complete Implementation : conftest.py
Copyright MIT License
Author : famavott
@pytest.fixture
def name_example(scope="session"):
    """."""
    return recon_handler(user_name='wmaserati76',
                         checks=['twitter', 'wikipedia',
                                 'medium', 'pinterest', 'github',
                                 'photobucket', 'imgur', 'youtube',
                                 'flickr', 'trip'])

0 View Complete Implementation : conftest.py
Copyright MIT License
Author : famavott
@pytest.fixture
def email_example(scope="session"):
    """."""
    return recon_handler(email='[email protected]',
                         checks=['facebook', 'pwned', 'hacked_email'])

0 View Complete Implementation : conftest.py
Copyright MIT License
Author : famavott
@pytest.fixture
def non_name_example(scope="session"):
    """."""
    return recon_handler(user_name='dgfhjeldkslksdglkhsl', checks=['twitter'])

0 View Complete Implementation : conftest.py
Copyright MIT License
Author : famavott
@pytest.fixture
def non_email_example(scope="session"):
    """."""
    return recon_handler(email='[email protected]', checks=['twitter'])

0 View Complete Implementation : conftest.py
Copyright MIT License
Author : famavott
@pytest.fixture
def m_name_example(scope="session"):
    """."""
    return recon_handler(user_name='m', checks=['twitter'])

0 View Complete Implementation : conftest.py
Copyright MIT License
Author : famavott
@pytest.fixture
def jf_name_example(scope="session"):
    """."""
    return recon_handler(user_name='jf_112', checks=['twitter'])

0 View Complete Implementation : conftest.py
Copyright MIT License
Author : famavott
@pytest.fixture
def matt_name_example(scope="session"):
    """."""
    return recon_handler(user_name='matt', checks=['twitter'])

0 View Complete Implementation : conftest.py
Copyright MIT License
Author : famavott
@pytest.fixture
def tom_email_example(scope="session"):
    """."""
    return recon_handler(email='[email protected]', checks=['twitter'])