๐ฅ Trending Repository: pytorch
๐ Description: Tensors and Dynamic neural networks in Python with strong GPU acceleration
๐ Repository URL: https://github.com/pytorch/pytorch
๐ Website: https://pytorch.org
๐ Readme: https://github.com/pytorch/pytorch#readme
๐ Statistics:
๐ Stars: 94.5K stars
๐ Watchers: 1.8k
๐ด Forks: 25.8K forks
๐ป Programming Languages: Python - C++ - Cuda - C - Objective-C++ - CMake
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Tensors and Dynamic neural networks in Python with strong GPU acceleration
๐ Repository URL: https://github.com/pytorch/pytorch
๐ Website: https://pytorch.org
๐ Readme: https://github.com/pytorch/pytorch#readme
๐ Statistics:
๐ Stars: 94.5K stars
๐ Watchers: 1.8k
๐ด Forks: 25.8K forks
๐ป Programming Languages: Python - C++ - Cuda - C - Objective-C++ - CMake
๐ท๏ธ Related Topics:
#python #machine_learning #deep_learning #neural_network #gpu #numpy #autograd #tensor
==================================
๐ง By: https://t.iss.one/DataScienceM
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
element = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.ID, "myDynamicElement"))
)
โข Get the page source after JavaScript has executed.
dynamic_html = driver.page_source
โข Close the browser window.
driver.quit()
VII. Common Tasks & Best Practices
โข Handle pagination by finding the "Next" link.
next_page_url = soup.find('a', text='Next')['href']โข Save data to a CSV file.
import csv
with open('data.csv', 'w', newline='', encoding='utf-8') as f:
writer = csv.writer(f)
writer.writerow(['Title', 'Link'])
# writer.writerow([title, url]) in a loop
โข Save data to CSV using
pandas.import pandas as pd
df = pd.DataFrame(data, columns=['Title', 'Link'])
df.to_csv('data.csv', index=False)
โข Use a proxy with
requests.proxies = {'http': 'https://10.10.1.10:3128', 'https': 'https://10.10.1.10:1080'}
requests.get('https://example.com', proxies=proxies)โข Pause between requests to be polite.
import time
time.sleep(2) # Pause for 2 seconds
โข Handle JSON data from an API.
json_response = requests.get('https://api.example.com/data').json()โข Download a file (like an image).
img_url = 'https://example.com/image.jpg'
img_data = requests.get(img_url).content
with open('image.jpg', 'wb') as handler:
handler.write(img_data)
โข Parse a
sitemap.xml to find all URLs.# Get the sitemap.xml file and parse it like any other XML/HTML to extract <loc> tags.
VIII. Advanced Frameworks (
Scrapy)โข Create a Scrapy spider (conceptual command).
scrapy genspider example example.com
โข Define a
parse method to process the response.# In your spider class:
def parse(self, response):
# parsing logic here
pass
โข Extract data using Scrapy's CSS selectors.
titles = response.css('h1::text').getall()โข Extract data using Scrapy's XPath selectors.
links = response.xpath('//a/@href').getall()โข Yield a dictionary of scraped data.
yield {'title': response.css('title::text').get()}โข Follow a link to parse the next page.
next_page = response.css('li.next a::attr(href)').get()
if next_page is not None:
yield response.follow(next_page, callback=self.parse)โข Run a spider from the command line.
scrapy crawl example -o output.json
โข Pass arguments to a spider.
scrapy crawl example -a category=books
โข Create a Scrapy Item for structured data.
import scrapy
class ProductItem(scrapy.Item):
name = scrapy.Field()
price = scrapy.Field()
โข Use an Item Loader to populate Items.
from scrapy.loader import ItemLoader
loader = ItemLoader(item=ProductItem(), response=response)
loader.add_css('name', 'h1.product-name::text')
#Python #WebScraping #BeautifulSoup #Selenium #Requests
โโโโโโโโโโโโโโโ
By: @DataScienceN โจ
โค3
๐ฅ Trending Repository: localstack
๐ Description: ๐ป A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline
๐ Repository URL: https://github.com/localstack/localstack
๐ Website: https://localstack.cloud
๐ Readme: https://github.com/localstack/localstack#readme
๐ Statistics:
๐ Stars: 61.1K stars
๐ Watchers: 514
๐ด Forks: 4.3K forks
๐ป Programming Languages: Python - Shell - Makefile - ANTLR - JavaScript - Java
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: ๐ป A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline
๐ Repository URL: https://github.com/localstack/localstack
๐ Website: https://localstack.cloud
๐ Readme: https://github.com/localstack/localstack#readme
๐ Statistics:
๐ Stars: 61.1K stars
๐ Watchers: 514
๐ด Forks: 4.3K forks
๐ป Programming Languages: Python - Shell - Makefile - ANTLR - JavaScript - Java
๐ท๏ธ Related Topics:
#python #testing #aws #cloud #continuous_integration #developer_tools #localstack
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: TrendRadar
๐ Description: ๐ฏ ๅๅซไฟกๆฏ่ฟ่ฝฝ๏ผAI ๅฉไฝ ็ๆๆฐ้ป่ต่ฎฏ็ญ็น๏ผ็ฎๅ็่ๆ ็ๆงๅๆ - ๅคๅนณๅฐ็ญ็น่ๅ+ๅบไบ MCP ็AIๅๆๅทฅๅ ทใ็ๆง35ไธชๅนณๅฐ๏ผๆ้ณใ็ฅไนใB็ซใๅๅฐ่ก่ง้ปใ่ดข่็คพ็ญ๏ผ๏ผๆบ่ฝ็ญ้+่ชๅจๆจ้+AIๅฏน่ฏๅๆ๏ผ็จ่ช็ถ่ฏญ่จๆทฑๅบฆๆๆๆฐ้ป๏ผ่ถๅฟ่ฟฝ่ธชใๆ ๆๅๆใ็ธไผผๆฃ็ดข็ญ13็งๅทฅๅ ท๏ผใๆฏๆไผไธๅพฎไฟก/้ฃไนฆ/้้/Telegram/้ฎไปถ/ntfyๆจ้๏ผ30็ง็ฝ้กต้จ็ฝฒ๏ผ1ๅ้ๆๆบ้็ฅ๏ผๆ ้็ผ็จใๆฏๆDocker้จ็ฝฒโญ ่ฎฉ็ฎๆณไธบไฝ ๆๅก๏ผ็จAI็่งฃ็ญ็น
๐ Repository URL: https://github.com/sansan0/TrendRadar
๐ Website: https://github.com/sansan0
๐ Readme: https://github.com/sansan0/TrendRadar#readme
๐ Statistics:
๐ Stars: 6K stars
๐ Watchers: 21
๐ด Forks: 4.5K forks
๐ป Programming Languages: Python - HTML - Batchfile - Shell - Dockerfile
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: ๐ฏ ๅๅซไฟกๆฏ่ฟ่ฝฝ๏ผAI ๅฉไฝ ็ๆๆฐ้ป่ต่ฎฏ็ญ็น๏ผ็ฎๅ็่ๆ ็ๆงๅๆ - ๅคๅนณๅฐ็ญ็น่ๅ+ๅบไบ MCP ็AIๅๆๅทฅๅ ทใ็ๆง35ไธชๅนณๅฐ๏ผๆ้ณใ็ฅไนใB็ซใๅๅฐ่ก่ง้ปใ่ดข่็คพ็ญ๏ผ๏ผๆบ่ฝ็ญ้+่ชๅจๆจ้+AIๅฏน่ฏๅๆ๏ผ็จ่ช็ถ่ฏญ่จๆทฑๅบฆๆๆๆฐ้ป๏ผ่ถๅฟ่ฟฝ่ธชใๆ ๆๅๆใ็ธไผผๆฃ็ดข็ญ13็งๅทฅๅ ท๏ผใๆฏๆไผไธๅพฎไฟก/้ฃไนฆ/้้/Telegram/้ฎไปถ/ntfyๆจ้๏ผ30็ง็ฝ้กต้จ็ฝฒ๏ผ1ๅ้ๆๆบ้็ฅ๏ผๆ ้็ผ็จใๆฏๆDocker้จ็ฝฒโญ ่ฎฉ็ฎๆณไธบไฝ ๆๅก๏ผ็จAI็่งฃ็ญ็น
๐ Repository URL: https://github.com/sansan0/TrendRadar
๐ Website: https://github.com/sansan0
๐ Readme: https://github.com/sansan0/TrendRadar#readme
๐ Statistics:
๐ Stars: 6K stars
๐ Watchers: 21
๐ด Forks: 4.5K forks
๐ป Programming Languages: Python - HTML - Batchfile - Shell - Dockerfile
๐ท๏ธ Related Topics:
#python #docker #mail #news #telegram_bot #mcp #data_analysis #trending_topics #wechat_robot #dingtalk_robot #ntfy #hot_news #feishu_robot #mcp_server
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: LEANN
๐ Description: RAG on Everything with LEANN. Enjoy 97% storage savings while running a fast, accurate, and 100% private RAG application on your personal device.
๐ Repository URL: https://github.com/yichuan-w/LEANN
๐ Readme: https://github.com/yichuan-w/LEANN#readme
๐ Statistics:
๐ Stars: 3.9K stars
๐ Watchers: 34
๐ด Forks: 403 forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: RAG on Everything with LEANN. Enjoy 97% storage savings while running a fast, accurate, and 100% private RAG application on your personal device.
๐ Repository URL: https://github.com/yichuan-w/LEANN
๐ Readme: https://github.com/yichuan-w/LEANN#readme
๐ Statistics:
๐ Stars: 3.9K stars
๐ Watchers: 34
๐ด Forks: 403 forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
#python #privacy #ai #offline_first #localstorage #vectors #faiss #rag #vector_search #vector_database #llm #langchain #llama_index #retrieval_augmented_generation #ollama #gpt_oss
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: PythonRobotics
๐ Description: Python sample codes and textbook for robotics algorithms.
๐ Repository URL: https://github.com/AtsushiSakai/PythonRobotics
๐ Website: https://atsushisakai.github.io/PythonRobotics/
๐ Readme: https://github.com/AtsushiSakai/PythonRobotics#readme
๐ Statistics:
๐ Stars: 26.3K stars
๐ Watchers: 509
๐ด Forks: 7K forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Python sample codes and textbook for robotics algorithms.
๐ Repository URL: https://github.com/AtsushiSakai/PythonRobotics
๐ Website: https://atsushisakai.github.io/PythonRobotics/
๐ Readme: https://github.com/AtsushiSakai/PythonRobotics#readme
๐ Statistics:
๐ Stars: 26.3K stars
๐ Watchers: 509
๐ด Forks: 7K forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
#python #algorithm #control #robot #localization #robotics #mapping #animation #path_planning #slam #autonomous_driving #autonomous_vehicles #ekf #hacktoberfest #cvxpy #autonomous_navigation
==================================
๐ง By: https://t.iss.one/DataScienceM
โข Error Handling: Always wrap dispatch logic in
โข Security: Never hardcode credentials directly in scripts. Use environment variables (
โข Rate Limits: SMTP servers impose limits on the number of messages one can send per hour or day. Implement pauses (
โข Opt-Outs: For promotional dispatches, ensure compliance with regulations (like GDPR, CAN-SPAM) by including clear unsubscribe options.
Concluding Thoughts
Automating electronic message dispatch empowers users to scale their communication efforts with remarkable efficiency. By leveraging Python's native capabilities, anyone can construct a powerful, flexible system for broadcasting anything from routine updates to extensive promotional campaigns. The journey into programmatic dispatch unveils a world of streamlined operations and enhanced communicative reach.
#python #automation #email #smtplib #emailautomation #programming #scripting #communication #developer #efficiency
โโโโโโโโโโโโโโโ
By: @DataScienceN โจ
try-except blocks to gracefully handle network issues, authentication failures, or incorrect receiver addresses.โข Security: Never hardcode credentials directly in scripts. Use environment variables (
os.environ.get()) or a secure configuration management system. Ensure starttls() is called for encrypted communication.โข Rate Limits: SMTP servers impose limits on the number of messages one can send per hour or day. Implement pauses (
time.sleep()) between dispatches to respect these limits and avoid being flagged as a spammer.โข Opt-Outs: For promotional dispatches, ensure compliance with regulations (like GDPR, CAN-SPAM) by including clear unsubscribe options.
Concluding Thoughts
Automating electronic message dispatch empowers users to scale their communication efforts with remarkable efficiency. By leveraging Python's native capabilities, anyone can construct a powerful, flexible system for broadcasting anything from routine updates to extensive promotional campaigns. The journey into programmatic dispatch unveils a world of streamlined operations and enhanced communicative reach.
#python #automation #email #smtplib #emailautomation #programming #scripting #communication #developer #efficiency
โโโโโโโโโโโโโโโ
By: @DataScienceN โจ
๐ฅ Trending Repository: Memori
๐ Description: Open-Source Memory Engine for LLMs, AI Agents & Multi-Agent Systems
๐ Repository URL: https://github.com/GibsonAI/Memori
๐ Website: https://memorilabs.ai
๐ Readme: https://github.com/GibsonAI/Memori#readme
๐ Statistics:
๐ Stars: 2.3K stars
๐ Watchers: 18
๐ด Forks: 216 forks
๐ป Programming Languages: Python - PLpgSQL
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Open-Source Memory Engine for LLMs, AI Agents & Multi-Agent Systems
๐ Repository URL: https://github.com/GibsonAI/Memori
๐ Website: https://memorilabs.ai
๐ Readme: https://github.com/GibsonAI/Memori#readme
๐ Statistics:
๐ Stars: 2.3K stars
๐ Watchers: 18
๐ด Forks: 216 forks
๐ป Programming Languages: Python - PLpgSQL
๐ท๏ธ Related Topics:
#python #agent #awesome #state_management #ai #memory #memory_management #hacktoberfest #long_short_term_memory #rag #llm #memori_ai #hacktoberfest2025 #chatgpt #aiagent
==================================
๐ง By: https://t.iss.one/DataScienceM
Media is too big
VIEW IN TELEGRAM
If you love tools that save time, money, and nerves โ this is 100% for you.
This is an open-source panel on Python + Streamlit, packed with a whole arsenal of useful automations.
You open it โ and itโs like gaining a superpower: doing everything faster.
What it can do:
๐ News Reader โ reads out current news.
And thatโs just part of the list.
Why do you need this?
git clone https://github.com/Ai-Quill/automated.git
cd automated
pip install -r requirements.txt
streamlit run app.py
https://localhost:8501And enjoy the panel where all tools are just one click away.
#python #soft #github
https://t.iss.one/DataScienceN
Please open Telegram to view this post
VIEW IN TELEGRAM
โค4
Media is too big
VIEW IN TELEGRAM
If you love automating everything, this is for you
AutoPilot is an open-source panel built with #Python + #Streamlit, packed with a whole arsenal of useful automations.
Open it, and you have tools at your fingertips like background removal for photos, QR code generation, YouTube downloading, fake data creation, audiobooks, email sending, code analysis, image editing, and even a news reader.
One window instead of a dozen services.๐
https://github.com/Ai-Quill/automated
๐ https://t.iss.one/DataScienceN
AutoPilot is an open-source panel built with #Python + #Streamlit, packed with a whole arsenal of useful automations.
Open it, and you have tools at your fingertips like background removal for photos, QR code generation, YouTube downloading, fake data creation, audiobooks, email sending, code analysis, image editing, and even a news reader.
One window instead of a dozen services.
https://github.com/Ai-Quill/automated
Please open Telegram to view this post
VIEW IN TELEGRAM
โค2
๐ฅ Trending Repository: Memori
๐ Description: Open-Source Memory Engine for LLMs, AI Agents & Multi-Agent Systems
๐ Repository URL: https://github.com/MemoriLabs/Memori
๐ Website: https://memorilabs.ai
๐ Readme: https://github.com/MemoriLabs/Memori#readme
๐ Statistics:
๐ Stars: 8.8K stars
๐ Watchers: 46
๐ด Forks: 629 forks
๐ป Programming Languages: Python - PLpgSQL
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Open-Source Memory Engine for LLMs, AI Agents & Multi-Agent Systems
๐ Repository URL: https://github.com/MemoriLabs/Memori
๐ Website: https://memorilabs.ai
๐ Readme: https://github.com/MemoriLabs/Memori#readme
๐ Statistics:
๐ Stars: 8.8K stars
๐ Watchers: 46
๐ด Forks: 629 forks
๐ป Programming Languages: Python - PLpgSQL
๐ท๏ธ Related Topics:
#python #agent #awesome #state_management #ai #memory #memory_management #hacktoberfest #long_short_term_memory #rag #llm #memori_ai #hacktoberfest2025 #chatgpt #aiagent
==================================
๐ง By: https://t.iss.one/DataScienceM
โค4
๐ฅ Trending Repository: ML-For-Beginners
๐ Description: 12 weeks, 26 lessons, 52 quizzes, classic Machine Learning for all
๐ Repository URL: https://github.com/microsoft/ML-For-Beginners
๐ Readme: https://github.com/microsoft/ML-For-Beginners#readme
๐ Statistics:
๐ Stars: 79.6K stars
๐ Watchers: 1.1k
๐ด Forks: 18.5K forks
๐ป Programming Languages: Jupyter Notebook - HTML - Python - Vue - JavaScript - Dockerfile
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: 12 weeks, 26 lessons, 52 quizzes, classic Machine Learning for all
๐ Repository URL: https://github.com/microsoft/ML-For-Beginners
๐ Readme: https://github.com/microsoft/ML-For-Beginners#readme
๐ Statistics:
๐ Stars: 79.6K stars
๐ Watchers: 1.1k
๐ด Forks: 18.5K forks
๐ป Programming Languages: Jupyter Notebook - HTML - Python - Vue - JavaScript - Dockerfile
๐ท๏ธ Related Topics:
#python #education #data_science #machine_learning #r #scikit_learn #machine_learning_algorithms #ml #machinelearning #machinelearning_python #scikit_learn_python #microsoft_for_beginners
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: Resume-Matcher
๐ Description: Improve your resumes with Resume Matcher. Get insights, keyword suggestions and tune your resumes to job descriptions.
๐ Repository URL: https://github.com/srbhr/Resume-Matcher
๐ Website: https://resumematcher.fyi/
๐ Readme: https://github.com/srbhr/Resume-Matcher#readme
๐ Statistics:
๐ Stars: 24.1K stars
๐ Watchers: 85
๐ด Forks: 4.5K forks
๐ป Programming Languages: Python - TypeScript - PowerShell - Shell - CSS - JavaScript - Makefile
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Improve your resumes with Resume Matcher. Get insights, keyword suggestions and tune your resumes to job descriptions.
๐ Repository URL: https://github.com/srbhr/Resume-Matcher
๐ Website: https://resumematcher.fyi/
๐ Readme: https://github.com/srbhr/Resume-Matcher#readme
๐ Statistics:
๐ Stars: 24.1K stars
๐ Watchers: 85
๐ด Forks: 4.5K forks
๐ป Programming Languages: Python - TypeScript - PowerShell - Shell - CSS - JavaScript - Makefile
๐ท๏ธ Related Topics:
#python #resume #machine_learning #natural_language_processing #typescript #nextjs #text_similarity #word_embeddings #ats #resume_parser #hacktoberfest #resume_builder #applicant_tracking_system #vector_search
==================================
๐ง By: https://t.iss.one/DataScienceM