Move content into sherlock sub-directory inside of repo. This directory will look very much like what the packaged version of Sherlock will look like when it is installed in the site-packages area.
No real restructuring of the code has happened. This just gives a view of the directory structure.pull/350/head
parent
4861181904
commit
d17268e737
@ -0,0 +1,5 @@
|
|||||||
|
"""Sherlock Module
|
||||||
|
|
||||||
|
This module contains the main logic to search for usernames at social
|
||||||
|
networks.
|
||||||
|
"""
|
@ -0,0 +1,14 @@
|
|||||||
|
#! /usr/bin/env python3
|
||||||
|
|
||||||
|
"""
|
||||||
|
Sherlock: Find Usernames Across Social Networks Module
|
||||||
|
|
||||||
|
This module contains the main logic to search for usernames at social
|
||||||
|
networks.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import sherlock
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
sherlock.main()
|
Loading…
Reference in new issue