atlas news
    
Python for Engineers
31  octobre     04h00
Smart Code Review Assistant
   nbsp;smart code reviewœâ app.pyâ œâ templates â œâ index.htmlâ â result.htmlâ uploads app.pyimport osfrom flask import Flask, render template, requestfrom pylint import epylint as lintimport openaiapp Flask( name )app.config[’UPLOAD FOLDER’] ’uploads’os.makedirs(app.config...
26  octobre     04h00
Data Structure Visualizer
   import tkinter as tkfrom tkinter import ttk, messageboximport networkx as nximport matplotlibmatplotlib.use( TkAgg )import matplotlib.pyplot as pltfrom matplotlib.backends.backend tkagg import FigureCanvasTkAggimport timeimport threading# Small sleep used to allow GUI to update between steps (very...
24  octobre     04h00
Expense Forecasting Tool
   import pandas as pdimport numpy as npimport matplotlib.pyplot as pltfrom sklearn.linear model import LinearRegressionfrom sklearn.metrics import mean absolute error, r2 score# -----------------------------# STEP 1: Create Sample Expense Data# -----------------------------# Example: Monthly total...
22  octobre     04h00
AI Flash Fiction Generator
   import streamlit as stfrom openai import OpenAIimport textwrap# Initialize APIclient OpenAI(api key YOUR OPENAI API KEY )st.set page config(page title AI Flash Fiction Generator , page icon , layout centered )st.title( AI Flash Fiction Generator )st.caption( Enter a theme or mood’ Get a 100-word...
21  octobre     09h10
The Top Programming Languages 2025 - IEEE Spectrum
   In the Spectrum default ranking, which is weighted with the interests of IEEE members in mind, we see that once again Python has the top spot, with the biggest change in the top five being JavaScript’s drop from third place last year to sixth place this year.Source: https: spectrum.ieee.org...
20  octobre     04h00
Smart Image Color Palette Extractor
   import cv2import numpy as npfrom sklearn.cluster import KMeansfrom tkinter import Tk, filedialogfrom PIL import Imageimport matplotlib.pyplot as pltdef rgb to hex(rgb): Convert RGB tuple to HEX string. return # :02x :02x :02x .format(int(rgb[0]), int(rgb[1]), int(rgb[2])...
18  octobre     18h25
Offline Python compiler apps for Android
   Pydroid 3:Features: A complete offline Python 3 IDE with a built-in interpreter, pip package manager, and a custom repository for pre-built packages of scientific libraries like NumPy, SciPy, and TensorFlow. Other tools: Includes a C, C , and Fortran compiler, a PDB debugger, and support for...
17  octobre     04h00
Medical Symptom Checker
   APP.PYimport osimport pandas as pdfrom flask import Flask, render template, requestfrom openai import OpenAIapp Flask( name )client OpenAI(api key os.getenv( OPENAI API KEY ))# Load demo datasetconditions df pd.read csv( conditions.csv ) app.route( , methods [ GET , POST ])def index(): ...
15  octobre     04h00
Virtual Stock Trading Game
   nbsp; Virtual Stock Trading Game (Streamlit)Features:- Simple username registration login- Buy Sell simulated orders at current market price (via yfinance)- Portfolio view, transaction history- Leaderboard by total portfolio value- SQLite persistenceRun: streamlit run virtual trading...
13  octobre     04h00
AI Meeting Scheduler Bot
   import osimport jsonfrom datetime import datetime, timedelta, time as dtimefrom dateutil import parser as dateparseimport pytzimport refrom flask import Flask, redirect, url for, session, request, render template string, flashfrom google.oauth2.credentials import Credentialsfrom google auth...
08  octobre     04h00
Dynamic QR Code Generator
   Project Structuredynamic qrœâ app.pyâ œâ templates â œâ index.htmlâ â œâ qr display.htmlâ â œâ update.htmlâ qr data.db app.pyfrom flask import Flask, render template, request, redirect, url forimport qrcodeimport sqlite3import io, base64app Flask( name ...
06  octobre     04h00
Smart Resume Gap Detector
   pip install spacy pandas dateparserpython -m spacy download en core web smimport reimport spacyimport pandas as pdimport dateparserfrom datetime import datetimefrom pathlib import Path# Optional PDF reader (only if you want to support .pdf)try: import fitz # PyMuPDFexcept...
30  septembre     04h00
AI Whiteboard Digitizer
   usr bin env python3 AI Whiteboard Digitizer (prototype)Usage: python whiteboard digitizer.py input image.jpgOutputs: - ocr texts.txt : OCR’d text lines (raw) - equations latex.tex : LaTeX for parseable math expressions -...
27  septembre     04h00
Virtual AI Travel Planner
   import osimport jsonimport timeimport requestsimport pandas as pdimport streamlit as stfrom datetime import date, timedelta# -----------------------------# Setup: API Keys from env vars# -----------------------------OPENAI API KEY os.getenv( OPENAI API KEY , )GOOGLE MAPS API KEY os.getenv( GOOGLE...
24  septembre     04h00
Fake News Image Detector
   import tkinter as tkfrom tkinter import filedialog, messageboxfrom PIL import Image, ImageTkimport exifreadimport requestsimport io# -----------------------# Metadata Extraction# -----------------------def extract metadata(image path): with open(image path, ’rb’) as f: ...
22  septembre     04h00
Smart Parking System Simulator pro
   import tkinter as tkfrom tkinter import messageboximport sqlite3import random# -----------------------# Database Setup# -----------------------def init db(): conn sqlite3.connect( parking.db ) cur conn.cursor() cur.execute( CREATE...
20  septembre     04h00
AI Stock Predictor (Demo)
   An AI Stock Predictor (Demo) is a project to showcase ML finance, while keeping it clear it’s for educational purposes only.import yfinance as yfimport pandas as pdimport numpy as npimport matplotlib.pyplot as pltfrom sklearn.model selection import train test splitfrom sklearn.linear model import...
17  septembre     04h00
Automatic Meeting Notes Generator
   import speech recognition as srfrom transformers import pipelinefrom fpdf import FPDF# -------------------------# 1. Record or load audio# -------------------------def transcribe audio(audio file None, duration 30): recognizer sr.Recognizer() if audio file: ...
15  septembre     04h00
AI-Based Recipe Generator
   import requestsimport pandas as pdimport openai# Replace with your API keysSPOONACULAR API KEY your spoonacular api key OPENAI API KEY your openai api key openai.api key OPENAI API KEY# -----------------------------------# 1. Get recipes from Spoonacular API# ---------------------------------...
13  septembre     04h00
Smart Resume Formatter
   from docx import Documentfrom docx.shared import Ptfrom fpdf import FPDF# ---------------------------# 1. Format Resume into Word# ---------------------------def create word resume(data, filename resume.docx ): doc Document() # Title (Name) ...
10  septembre     04h00
AI Workout Form Corrector
   import cv2import mediapipe as mpimport numpy as npmp drawing mp.solutions.drawing utilsmp pose mp.solutions.pose# -----------------------# Calculate angle between 3 points# -----------------------def calculate angle(a, b, c): a np.array(a) # First b np.array(b) ...
08  septembre     04h00
Voice Emotion Detector
   import osimport librosaimport numpy as npimport sounddevice as sdimport matplotlib.pyplot as pltfrom sklearn.model selection import train test splitfrom sklearn.svm import SVCfrom sklearn.preprocessing import LabelEncoder, StandardScalerimport pickle# -----------------------# STEP 1: Feature...
31  août     04h00
Braille Translator Tool
   import tkinter as tkfrom tkinter import filedialog, messageboxfrom PIL import Image, ImageDraw, ImageTkimport mathimport os# -------------------------# Braille mapping utilities# -------------------------# Dot-number definitions for letters a..z (Grade-1 braille)LETTER DOTS ’a’: [1]...
28  août     04h00
Music Sheet to Audio Converter
   nbsp; sheet to midi.pySimple prototype: Convert a scanned single-line, monophonic staff in TREBLE CLEFto a MIDI file using OpenCV -> heuristic notehead detection -> music21.Limitations: - Monophonic, printed notation, single staff detection. - Treats each notehead as a quarter note...
26  août     04h00
AI-powered Meme Generator
   nbsp; AI-powered Meme Generator- Pick a local image or image URL- Generate captions with OpenAI (optional)- Render meme-style text (top bottom) on the image and saveDependencies: pip install openai pillow requests python-dotenv import osimport textwrapimport requestsfrom io import BytesIOfrom...