Metadata-Version: 2.1
Name: vkOsint
Version: 1.0
Summary: Python package for searching vk accounts by phone number
Home-page: https://github.com/DIJIRO/vkOsint
Author: DIJIRO
Author-email: de.sm1rnov@yandex.ru
License: MIT
Keywords: vk private api,vk osint,vkOsint,vk-api
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE


## vkOsint - Python package for searching vk accounts by phone number

Features:
* Authorization by login and password
* Tokens parsing
* Accounts searching by phone number
* Source code contains all the api's hash functionality

Package uses Private api without selenium.
Developed by reverse engineering & api sniffing

Support **Python >= 3.10**

## ToDo
- [ ] 2fa authorization
- [ ] Osint function return value filters
## Installation
```console
$ pip install vkOsint
```
### Basic Usage

``` python
import json

from vkOsint import vkOsint

vkInstance = vkOsint(proxy='[proxy]')
vkInstance.login(username='[login]',password='[password]')
parsedData = vkInstance.osint(phoneNumbers=['+7..........','+7..........'])
with open('results.json','w') as file:
    json.dump(parsedData,file,indent=4,ensure_ascii=True)
```
