Coding & Data Science Resources
30.4K subscribers
334 photos
515 files
337 links
Official Telegram Channel for Free Coding & Data Science Resources

Admin: @love_data
Download Telegram
DSA in Python βœ…
πŸ‘1
How to enter into Data Science

πŸ‘‰Start with the basics: Learn programming languages like Python and R to master data analysis and machine learning techniques. Familiarize yourself with tools such as TensorFlow, sci-kit-learn, and Tableau to build a strong foundation.

πŸ‘‰Choose your target field: From healthcare to finance, marketing, and more, data scientists play a pivotal role in extracting valuable insights from data. You should choose which field you want to become a data scientist in and start learning more about it.

πŸ‘‰Build a portfolio: Start building small projects and add them to your portfolio. This will help you build credibility and showcase your skills.
πŸ‘3
computer graphics.pdf
80.8 MB
πŸ’» Computer Graphics Handwritten Notes πŸ“ 🌟

React ❀️ for more πŸ“±
❀2
Python Notes .pdf
16.6 MB
πŸ”° Complete Python NotesπŸ“

React πŸ₯° for more πŸ“±
Python Data Stracture.pdf
4 MB
πŸ“–Data Structure Using Python πŸ”°

React ❀️‍πŸ”₯ for more πŸ”—
πŸ‘4
Build Data Analyst Portfolio in 1 month

Path 1 (More focus on SQL & then on Python)
πŸ‘‡πŸ‘‡

Week 1: Learn Fundamentals
Days 1-3: Start with online courses or tutorials on basic data analysis concepts.
Days 4-7: Dive into SQL basics for data retrieval and manipulation.
Free Resources: https://t.iss.one/sqlanalyst/74

Week 2: Data Analysis Projects
Days 8-14: Begin working on simple data analysis projects using SQL. Analyze the data and document your findings.

Week 3: Intermediate Skills
Days 15-21: Start learning Python for data analysis. Focus on libraries like Pandas for data manipulation.
Days 22-23: Explore more advanced SQL topics.

Week 4: Portfolio Completion
Days 24-28: Continue working on your SQL-based projects, applying what you've learned.
Day 29: Transition to Python for your personal project, applying Python's data analysis capabilities.
Day 30: Create a portfolio website showcasing your projects in SQL and Python, along with explanations and code.

Hope it helps :)
πŸ‘3
Python Libraries For Data Science
πŸ‘5
Python Basics to Advanced NotesπŸ“š (1) (1).pdf
8.7 MB
πŸ”° Python From Scratch πŸ‘†

React ❀️ for more free resources πŸ”—

πŸ”€πŸ”€πŸ”€πŸ”€πŸ”€πŸ”€
Expert Python Programming.pdf
4.3 MB
Expert Python Programming (2021)

100 likes = new books
hands-on-data-science.pdf
15.3 MB
Hands-On Data Science and Python Machine Learning
Frank Kane, 2017
❀3πŸ‘2
Scrap Image from bing using BeautifulSoup
import requests
from bs4 import BeautifulSoup as BSP

def split_url(url):
return url.split('&')[0]

def get_image_urls(search_query):
url = f"https://cn.bing.com/images/search?q={search_query}&first=1&cw=1177&ch=678"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3"
}
rss = requests.get(url, headers=headers)
soup = BSP(rss.content, "html.parser")

all_img = []
for img in soup.find_all('img'):
img_url = img.get('src2')
if img_url and img_url.startswith('https://tse2.mm.bing.net/'):
img_url = split_url(img_url)
all_img.append(img_url)

return all_img

print(get_image_urls("cat"))


sample response :
['https://tse2.mm.bing.net/th?q=Cat+Portrait', ...']
πŸ‘2