├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── clean.sh ├── setup.cfg ├── setup.py ├── social_ids ├── __init__.py ├── cli │ ├── __init__.py │ └── get_ids.py └── networks │ ├── __init__.py │ ├── facebook.py │ ├── instagram.py │ └── twitter.py └── tests ├── cli └── test_cli.py └── networks ├── test_facebook.py ├── test_instagram.py └── test_twitter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/clean.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/setup.py -------------------------------------------------------------------------------- /social_ids/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_ids/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_ids/cli/get_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/social_ids/cli/get_ids.py -------------------------------------------------------------------------------- /social_ids/networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_ids/networks/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/social_ids/networks/facebook.py -------------------------------------------------------------------------------- /social_ids/networks/instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/social_ids/networks/instagram.py -------------------------------------------------------------------------------- /social_ids/networks/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/social_ids/networks/twitter.py -------------------------------------------------------------------------------- /tests/cli/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/tests/cli/test_cli.py -------------------------------------------------------------------------------- /tests/networks/test_facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/tests/networks/test_facebook.py -------------------------------------------------------------------------------- /tests/networks/test_instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/tests/networks/test_instagram.py -------------------------------------------------------------------------------- /tests/networks/test_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermo-carrasco/social_ids/HEAD/tests/networks/test_twitter.py --------------------------------------------------------------------------------