├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── linkedin-post-automator.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── core ├── __init__.py ├── chatgpt.py ├── content_manager.py ├── linkedin.py └── scraper.py ├── example_config.json ├── main.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/linkedin-post-automator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/.idea/linkedin-post-automator.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/core/chatgpt.py -------------------------------------------------------------------------------- /core/content_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/core/content_manager.py -------------------------------------------------------------------------------- /core/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/core/linkedin.py -------------------------------------------------------------------------------- /core/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/core/scraper.py -------------------------------------------------------------------------------- /example_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/example_config.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai == 1.73.0 2 | beautifulsoup4 3 | requests 4 | schedule 5 | feedparser 6 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAKZOR/linkedin-post-automator/HEAD/utils.py --------------------------------------------------------------------------------