├── setup.py ├── scrap_and_sleep ├── X.py ├── __init__.py ├── facebook.py ├── instagram.py ├── linkedin.py └── reddit.py ├── .github └── workflows │ └── workflow.yml ├── .DS_Store └── README.MD /setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrap_and_sleep/X.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrap_and_sleep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrap_and_sleep/facebook.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrap_and_sleep/instagram.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrap_and_sleep/linkedin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrap_and_sleep/reddit.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- 1 | # Place for workflow -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3rd-Son/scrape_and_sleep/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | # scrap_and_sleep 2 | 3 | Hi there! Glad you made it here early. 😊 4 | 5 | **scrap_and_sleep** is a Python library built with the idea of scraping social media accounts. After mentioning how I scraped Twitter, a lot of people asked me about it, so I decided to turn it into a library. This project also opens the door for improvements and contributions, especially for scraping other social media platforms. 6 | 7 | ### Current Status 8 | Right now, I've just created the basic structure—no code yet! But when I'm done, you'll be able to: 9 | ``` 10 | pip install scrap_and_sleep 11 | ``` 12 | 13 | ### How You Can Help 14 | For now, feel free to **star** and **watch** the repo. I’m open to collaborations and contributions, so don’t hesitate to reach out if you’re interested in helping! 15 | 16 | ### Stay Connected 17 | - **Twitter**: [@3rdSon__](https://twitter.com/3rdSon__) 18 | - **LinkedIn**: [3rdSon](https://www.linkedin.com/in/3rdson/) 19 | - **Medium**: [@3rdSon](https://medium.com/@3rdSon) 20 | - **Hashnode**: [@3rdSon](https://hashnode.com/@3rdSon) 21 | 22 | If you enjoy reading about AI and Python, follow me on Medium and Hashnode for more content! 23 | --------------------------------------------------------------------------------