├── .gitignore ├── Common.py ├── README.md ├── SG.py ├── User.py ├── load_data_from_file.py └── load_data_with_sqlalchemy.py /.gitignore: -------------------------------------------------------------------------------- 1 | # no way it couldn`t work! 2 | *.pyc 3 | *.md~ -------------------------------------------------------------------------------- /Common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ee/SocialEngineerDBuilder/HEAD/Common.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ee/SocialEngineerDBuilder/HEAD/README.md -------------------------------------------------------------------------------- /SG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ee/SocialEngineerDBuilder/HEAD/SG.py -------------------------------------------------------------------------------- /User.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ee/SocialEngineerDBuilder/HEAD/User.py -------------------------------------------------------------------------------- /load_data_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ee/SocialEngineerDBuilder/HEAD/load_data_from_file.py -------------------------------------------------------------------------------- /load_data_with_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5ee/SocialEngineerDBuilder/HEAD/load_data_with_sqlalchemy.py --------------------------------------------------------------------------------