├── .gitignore ├── Examples ├── board_sections_example.py ├── download_board_images.py ├── examples.py ├── follow_examples.py ├── get_board_followers.py ├── mass_board_invites.py └── messages_example.py ├── LICENSE ├── MANIFEST.in ├── README.md ├── py3pin ├── BookmarkManager.py ├── Pinterest.py ├── Registry.py ├── RequestBuilder.py ├── __init__.py └── __version__.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/board_sections_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/Examples/board_sections_example.py -------------------------------------------------------------------------------- /Examples/download_board_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/Examples/download_board_images.py -------------------------------------------------------------------------------- /Examples/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/Examples/examples.py -------------------------------------------------------------------------------- /Examples/follow_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/Examples/follow_examples.py -------------------------------------------------------------------------------- /Examples/get_board_followers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/Examples/get_board_followers.py -------------------------------------------------------------------------------- /Examples/mass_board_invites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/Examples/mass_board_invites.py -------------------------------------------------------------------------------- /Examples/messages_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/Examples/messages_example.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/README.md -------------------------------------------------------------------------------- /py3pin/BookmarkManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/py3pin/BookmarkManager.py -------------------------------------------------------------------------------- /py3pin/Pinterest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/py3pin/Pinterest.py -------------------------------------------------------------------------------- /py3pin/Registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/py3pin/Registry.py -------------------------------------------------------------------------------- /py3pin/RequestBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/py3pin/RequestBuilder.py -------------------------------------------------------------------------------- /py3pin/__init__.py: -------------------------------------------------------------------------------- 1 | from py3pin import * -------------------------------------------------------------------------------- /py3pin/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.3.0' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | requests-toolbelt 3 | selenium >= 4.6.0 4 | webdriver-manager -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstoilov/py3-pinterest/HEAD/setup.py --------------------------------------------------------------------------------