Data Science Jupyter Notebooks
10.8K subscribers
268 photos
31 videos
9 files
692 links
Explore the world of Data Science through Jupyter Notebooksβ€”insights, tutorials, and tools to boost your data journey. Code, analyze, and visualize smarter with every post.
Download Telegram
πŸ”₯ Trending Repository: claude-cookbooks

πŸ“ Description: A collection of notebooks/recipes showcasing some fun and effective ways of using Claude.

πŸ”— Repository URL: https://github.com/anthropics/claude-cookbooks

πŸ“– Readme: https://github.com/anthropics/claude-cookbooks#readme

πŸ“Š Statistics:
🌟 Stars: 21.2K stars
πŸ‘€ Watchers: 397
🍴 Forks: 2.3K forks

πŸ’» Programming Languages: Jupyter Notebook - Python

🏷️ Related Topics: Not available

==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: vcpkg

πŸ“ Description: C++ Library Manager for Windows, Linux, and MacOS

πŸ”— Repository URL: https://github.com/microsoft/vcpkg

πŸ“– Readme: https://github.com/microsoft/vcpkg#readme

πŸ“Š Statistics:
🌟 Stars: 25.8K stars
πŸ‘€ Watchers: 438
🍴 Forks: 7.1K forks

πŸ’» Programming Languages: CMake - PowerShell - Shell - C++ - Python - C

🏷️ Related Topics:
#c #windows #package_manager #visual_studio #cmake #packages #cplusplus #cpp #libraries #vcpkg


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: deepchat

πŸ“ Description: 🐬DeepChat - A smart assistant that connects powerful AI to your personal world

πŸ”— Repository URL: https://github.com/ThinkInAIXYZ/deepchat

🌐 Website: https://deepchat.thinkinai.xyz/

πŸ“– Readme: https://github.com/ThinkInAIXYZ/deepchat#readme

πŸ“Š Statistics:
🌟 Stars: 4.2K stars
πŸ‘€ Watchers: 46
🍴 Forks: 526 forks

πŸ’» Programming Languages: TypeScript - Vue - JavaScript - CSS - NSIS - HTML

🏷️ Related Topics:
#chat #agent #ai #cross_platform #mcp #chatbot #gemini #claude #ai_assistant #ai_chat #chatgpt #deepseek #tool_calling #openai_client #mcp_client #llm_client


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: ebook2audiobook

πŸ“ Description: Generate audiobooks from e-books, voice cloning & 1107+ languages!

πŸ”— Repository URL: https://github.com/DrewThomasson/ebook2audiobook

πŸ“– Readme: https://github.com/DrewThomasson/ebook2audiobook#readme

πŸ“Š Statistics:
🌟 Stars: 11.7K stars
πŸ‘€ Watchers: 58
🍴 Forks: 897 forks

πŸ’» Programming Languages: Python - Jupyter Notebook - Shell - Dockerfile - Batchfile

🏷️ Related Topics:
#multilingual #windows #linux #docker #mac #kaggle #audiobook #tts #english #epub #chinese #gradio #audiobooks #colab_notebook #voice_cloning #xtts


==================================
🧠 By: https://t.iss.one/DataScienceM
❀1
πŸ”₯ Trending Repository: deepdarkCTI

πŸ“ Description: Collection of Cyber Threat Intelligence sources from the deep and dark web

πŸ”— Repository URL: https://github.com/fastfire/deepdarkCTI

πŸ“– Readme: https://github.com/fastfire/deepdarkCTI#readme

πŸ“Š Statistics:
🌟 Stars: 5.8K stars
πŸ‘€ Watchers: 241
🍴 Forks: 1K forks

πŸ’» Programming Languages: Not available

🏷️ Related Topics:
#cti #threat_intelligence #deepweb #darkweb #cyberhunter


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: storybook

πŸ“ Description: Storybook is the industry standard workshop for building, documenting, and testing UI components in isolation

πŸ”— Repository URL: https://github.com/storybookjs/storybook

🌐 Website: https://storybook.js.org

πŸ“– Readme: https://github.com/storybookjs/storybook#readme

πŸ“Š Statistics:
🌟 Stars: 88K stars
πŸ‘€ Watchers: 925
🍴 Forks: 9.7K forks

πŸ’» Programming Languages: TypeScript - JavaScript - MDX - Svelte - Vue - CSS

🏷️ Related Topics:
#react #javascript #stories #testing #html #components #documentation #styleguide #design_systems #angular #typescript #ui #react_native #webpack #workshop #vue #web_components #svelte #storybook #vite


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: filebrowser

πŸ“ Description: πŸ“‚ Web File Browser

πŸ”— Repository URL: https://github.com/gtsteffaniak/filebrowser

πŸ“– Readme: https://github.com/gtsteffaniak/filebrowser#readme

πŸ“Š Statistics:
🌟 Stars: 3.9K stars
πŸ‘€ Watchers: 17
🍴 Forks: 155 forks

πŸ’» Programming Languages: Go - Vue - JavaScript - TypeScript - CSS - HTML

🏷️ Related Topics: Not available

==================================
🧠 By: https://t.iss.one/DataScienceM
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ–₯ Want your Telegram bot to respond using ChatGPT?

Do it in a couple of minutes: just install the python-telegram-bot library, add your #OpenAI #API key and bot token, and the bot will start replying to all messages using #ChatGPT.

from telegram import Update
from telegram.ext import ApplicationBuilder, MessageHandler, filters, ContextTypes
from openai import OpenAI


Specify your keys
OPENAI_API_KEY = "sk-..." 
TELEGRAM_TOKEN = "123456789:ABC..."

client = OpenAI(api_key=OPENAI_API_KEY)

async def handle_message(update: Update, context: ContextTypes.DEFAULT_TYPE):
    user_text = update.message.text

    response = client.chat.completions.create(
        model="gpt-4o-mini",
        messages=[{"role": "user", "content": user_text}]
    )

    await update.message.reply_text(response.choices[0].message.content)

app = ApplicationBuilder().token(TELEGRAM_TOKEN).build()
app.add_handler(MessageHandler(filters.TEXT & ~filters.COMMAND, handle_message))
app.run_polling()


https://t.iss.one/CodeProgrammer πŸ‘
Please open Telegram to view this post
VIEW IN TELEGRAM
❀4
πŸ”₯ Trending Repository: yaak

πŸ“ Description: The most intuitive desktop API client. Organize and execute REST, GraphQL, WebSockets, Server Sent Events, and gRPC 🦬

πŸ”— Repository URL: https://github.com/mountain-loop/yaak

🌐 Website: https://yaak.app

πŸ“– Readme: https://github.com/mountain-loop/yaak#readme

πŸ“Š Statistics:
🌟 Stars: 8.2K stars
πŸ‘€ Watchers: 24
🍴 Forks: 288 forks

πŸ’» Programming Languages: TypeScript - Rust

🏷️ Related Topics:
#graphql #http #websocket #grpc #http_client #sse #tauri #postman_alternative #insomnia_alternative #bruno_alternative


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: skyvern

πŸ“ Description: Automate browser-based workflows with LLMs and Computer Vision

πŸ”— Repository URL: https://github.com/Skyvern-AI/skyvern

🌐 Website: https://www.skyvern.com

πŸ“– Readme: https://github.com/Skyvern-AI/skyvern#readme

πŸ“Š Statistics:
🌟 Stars: 14.7K stars
πŸ‘€ Watchers: 84
🍴 Forks: 1.3K forks

πŸ’» Programming Languages: Python - TypeScript - MDX - Jinja - JavaScript - Shell

🏷️ Related Topics:
#python #api #workflow #automation #browser #computer #vision #gpt #browser_automation #rpa #playwright #llm


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: micrograd

πŸ“ Description: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API

πŸ”— Repository URL: https://github.com/karpathy/micrograd

πŸ“– Readme: https://github.com/karpathy/micrograd#readme

πŸ“Š Statistics:
🌟 Stars: 13K stars
πŸ‘€ Watchers: 162
🍴 Forks: 1.9K forks

πŸ’» Programming Languages: Jupyter Notebook - Python

🏷️ Related Topics: Not available

==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: chat-ui

πŸ“ Description: Open source codebase powering the HuggingChat app

πŸ”— Repository URL: https://github.com/huggingface/chat-ui

🌐 Website: https://huggingface.co/chat

πŸ“– Readme: https://github.com/huggingface/chat-ui#readme

πŸ“Š Statistics:
🌟 Stars: 9.3K stars
πŸ‘€ Watchers: 88
🍴 Forks: 1.4K forks

πŸ’» Programming Languages: TypeScript - Svelte - CSS - JavaScript - Dockerfile - HTML

🏷️ Related Topics:
#typescript #svelte #hacktoberfest #tailwindcss #huggingface #svelte_kit #sveltekit #llm #chatgpt


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: SpacetimeDB

πŸ“ Description: Multiplayer at the speed of light

πŸ”— Repository URL: https://github.com/clockworklabs/SpacetimeDB

🌐 Website: https://spacetimedb.com

πŸ“– Readme: https://github.com/clockworklabs/SpacetimeDB#readme

πŸ“Š Statistics:
🌟 Stars: 17.7K stars
πŸ‘€ Watchers: 76
🍴 Forks: 619 forks

πŸ’» Programming Languages: Rust - C++ - C# - TypeScript - Python - Shell

🏷️ Related Topics:
#database #smart_contracts #game_development #relational_database #relational #dataoriented


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: qBittorrent

πŸ“ Description: qBittorrent BitTorrent client

πŸ”— Repository URL: https://github.com/qbittorrent/qBittorrent

🌐 Website: https://www.qbittorrent.org

πŸ“– Readme: https://github.com/qbittorrent/qBittorrent#readme

πŸ“Š Statistics:
🌟 Stars: 33.4K stars
πŸ‘€ Watchers: 425
🍴 Forks: 4.4K forks

πŸ’» Programming Languages: C++ - JavaScript - HTML - Python - CSS - CMake

🏷️ Related Topics:
#c_plus_plus #torrent #bittorrent #bittorrent_client #torrent_client #crossplatform


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: OpenVoice

πŸ“ Description: Instant voice cloning by MIT and MyShell. Audio foundation model.

πŸ”— Repository URL: https://github.com/myshell-ai/OpenVoice

🌐 Website: https://research.myshell.ai/open-voice

πŸ“– Readme: https://github.com/myshell-ai/OpenVoice#readme

πŸ“Š Statistics:
🌟 Stars: 34.7K stars
πŸ‘€ Watchers: 243
🍴 Forks: 3.8K forks

πŸ’» Programming Languages: Python - Jupyter Notebook

🏷️ Related Topics:
#text_to_speech #tts #voice_clone #zero_shot_tts


==================================
🧠 By: https://t.iss.one/DataScienceM
Forwarded from Data Science courses
⭐️ Hello my advertiser friend!

I’m Eng. Hussein Sheikho πŸ‘‹ and I’m excited to share our special promotional offer with you! 🎯

πŸ’₯ Promo Offer:
Promote your ad across all our listed channels for only $35! πŸ’°
πŸ“’ We accept all types and formats of advertisements.

βœ… Publishing Plan:
Your ad will be published for 20 days across all our channels,
plus it will be pinned for 7 days πŸ”

πŸ§‘β€πŸ’» For Programming Channel Owners Only:
Want your tech channel to grow fast? πŸš€
You can add your channel to our promo folder for just $20/month β€”
average growth rate 2000+ subscribers/month πŸ“ˆ

πŸ“© Contact me for more details:
πŸ‘‰ t.iss.one/HusseinSheikho

🌱 Let’s grow together!

Our Share folder (our channels) πŸ‘‡
https://t.iss.one/addlist/8_rRW2scgfRhOTc0
Please open Telegram to view this post
VIEW IN TELEGRAM
❀1
Data Science Jupyter Notebooks pinned «⭐️ Hello my advertiser friend! I’m Eng. Hussein Sheikho πŸ‘‹ and I’m excited to share our special promotional offer with you! 🎯 πŸ’₯ Promo Offer: Promote your ad across all our listed channels for only $35! πŸ’° πŸ“’ We accept all types and formats of advertisements.…»
Learning Python for science is
βœ… with these 8 awesome GitHub repos!

πŸ–₯ Repo: Project Based Learning
One of the most famous educational repos with 230K+ stars that implements various algorithms and projects using Python.


πŸ–₯ Repo: Real Python Materials
Supplementary resources and exercises including project-based tutorials, guides, and practical exercises.


πŸ–₯ Repo: Learn By Doing
Project-based tutorials in AI and machine learning for all levels.


πŸ–₯ Repo: Awesome Jupyter
A curated collection of notebooks, tools, and powerful libraries for working with Jupyter.


πŸ–₯ Repo: Python Mini Projects
A collection of mini-projects like games and small apps that you can quickly run and practice.


πŸ–₯ Repo: 100Projects of Code
An educational challenge including 100 real projects; you practice and see your progress day by day.


πŸ–₯ Repo: Data Science Projects
Practical ideas and examples to start data science with Python.


πŸ–₯ Repo: Python Project Scripts
Small and large scripting projects, from beginner to advanced levels.
πŸ”₯2❀1
πŸ”₯ Trending Repository: sing-box

πŸ“ Description: The universal proxy platform

πŸ”— Repository URL: https://github.com/SagerNet/sing-box

🌐 Website: https://sing-box.sagernet.org/

πŸ“– Readme: https://github.com/SagerNet/sing-box#readme

πŸ“Š Statistics:
🌟 Stars: 27.3K stars
πŸ‘€ Watchers: 180
🍴 Forks: 3.2K forks

πŸ’» Programming Languages: Go - Shell

🏷️ Related Topics: Not available

==================================
🧠 By: https://t.iss.one/DataScienceM
❀1
πŸ”₯ Trending Repository: lerobot

πŸ“ Description: πŸ€— LeRobot: Making AI for Robotics more accessible with end-to-end learning

πŸ”— Repository URL: https://github.com/huggingface/lerobot

🌐 Website: https://huggingface.co/docs/lerobot

πŸ“– Readme: https://github.com/huggingface/lerobot#readme

πŸ“Š Statistics:
🌟 Stars: 18.2K stars
πŸ‘€ Watchers: 139
🍴 Forks: 2.8K forks

πŸ’» Programming Languages: Python - Makefile

🏷️ Related Topics: Not available

==================================
🧠 By: https://t.iss.one/DataScienceM