Add files via upload

This commit is contained in:
G
2021-05-31 13:06:06 -07:00
committed by GitHub
parent 1be0709749
commit 431353ce42
5 changed files with 658 additions and 621 deletions
+1
View File
@@ -12,6 +12,7 @@ The analysis and public extracted information from this OSINT tool could help in
This project is *"currently used by some law enforcement agencies in countries where resources are limited"*.
## Update
- You can import SocialAnalyzer object from the python package (Users request)
- Cancel task has been implemented (Users request)
- Save the GUI analysis \ output as JSON file has been implemented (Users request)
- For issues and questions related to the private modules, email me directly
+19
View File
@@ -10,6 +10,7 @@ This project is *"currently used by some law enforcement agencies in countries w
Update
======
- You can import SocialAnalyzer object from the python package (Users request)
- Cancel task has been implemented (Users request)
- Save the GUI analysis \ output as JSON file has been implemented (Users request)
- For issues and questions related to the private modules, email me directly
@@ -41,6 +42,24 @@ Running Example (Custom)
#all websites with metadata, extraction, filter only existing profiles with status good
python3 -m social-analyzer --cli --mode "fast" --username "johndoe" --websites "all" --metadata --extract --trim --filter "good" --profile "detected"
Running Example (as object)
===========================
.. code:: bash
from importlib import import_module
SocialAnalyzer = import_module("social-analyzer").SocialAnalyzer(silent=True)
results = SocialAnalyzer.run_as_object(username="johndoe",silent=True)
print(results)
Running Example (as object with specific websites, metadata and extraction)
===========================================================================
.. code:: bash
from importlib import import_module
SocialAnalyzer = import_module("social-analyzer").SocialAnalyzer(silent=True)
results = SocialAnalyzer.run_as_object(username="johndoe", websites="youtube pinterest tumblr", metadata=True, extract=True, silent=True)
print(results)
Help (python3 -m social-analyzer --h)
=====================================
.. code:: bash
+636 -620
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -9,6 +9,7 @@ cp app.py pip-social-analyzer/social-analyzer/__main__.py
cat >>pip-social-analyzer/social-analyzer/__init__.py <<EOL
#!/usr/bin/env python
from .__main__ import main_logic
from .__main__ import SocialAnalyzer
EOL
cat >>pip-social-analyzer/social-analyzer/social-analyzer <<EOL
#!/usr/bin/env python
+1 -1
View File
@@ -12,7 +12,7 @@ setup(
author_email='gigaqeeq@gmail.com',
description="API, CLI & Web App for analyzing & finding a person's profile across 300+ social media websites (Detections are updated regularly)",
long_description=long_description,
version='0.27',
version='0.28',
license='AGPL-3.0',
url='https://github.com/qeeqbox/social-analyzer',
packages=['social-analyzer'],