Freelancers using Python in Delhi
Freelancers using Python in Delhi
Sign Up
Post a job
Sign Up
Log In
Filters
2
Projects
People
Raj Pathak
pro
Gurugram, India
Founding AI Engineer, Agents, Automation, Cloud, Full-Stack
$1k+
Earned
8x
Hired
4.7
Rating
52
Followers
Follow
Message
Founding AI Engineer, Agents, Automation, Cloud, Full-Stack
0
AI Debugging Tool Evaluation
0
8
0
Custom Integration Workflow Using Make.com
0
14
0
Shopify Order Fulfillment Automation with Python
0
10
0
Smart Customer Support Chatbot – Built with Python & NLP
0
40
Python
(5)
Follow
Message
Chhavi Verma
Delhi, India
Data Science and Visualization Expert
1x
Hired
5.0
Rating
10
Followers
Follow
Message
Data Science and Visualization Expert
1
Hi Contra community! Just wrapped a rewarding project for Nauvyashree—delivered deep-dive EDA, custom visualizations, and rich survey sentiment analysis across four datasets. Each milestone included well-designed PDFs packed with clear charts and approachable explanations—making insights accessible for all audiences. I went the extra mile with collaborative Google Meet sessions to walk the client through every analysis, helping connect the findings to big-picture goals. Feedback was fantastic, and milestone-based payments made the process smooth and transparent. This project really strengthened my ability to turn complex results into stories that empower client decision-making. If you want visually engaging, client-focused analytics—or need easy-to-follow reports and hands-on walkthroughs for your next project—let’s connect!
1
88
1
Books Data Analysis
1
9
1
Books Data Analysis
1
15
1
Red Wine Analysis
1
13
Python
(5)
Follow
Message
Trashu Vashisth
Delhi, India
Building Production-Grade AI Agents & RAG Systems
14
Followers
Follow
Message
Building Production-Grade AI Agents & RAG Systems
0
The Problem: Sales teams waste 60% of their time researching leads instead of closing them. The Solution: I built a custom Agentic AI Pipeline that automates deep-dive business intelligence and lead scoring. Key Technical Highlights: Multi-Agent Architecture: Built using CrewAI, featuring a 'Business Intelligence Specialist' (for real-time research) and a 'Senior Sales Director' (for strategic scoring). High-Speed Intelligence: Powered by Llama 3.3-70B for near-instant reasoning and decision-making. Real-time Web Scoping: Integrated Tavily AI to fetch live revenue data, employee counts, and market positioning. Enterprise Storage: A robust SQLite backend to manage lead pipelines with a sleek Streamlit dashboard. Smart Throttling: Engineered custom rate-limiting and token-trimming logic to ensure 99.9% uptime even under heavy API constraints. How it works: Simply enter a company name and URL. The AI agents scour the web, analyze the company's "AI potential," calculate a priority score (0-100), and even write a personalized sales pitch—all in under 30 seconds.
0
78
0
I built a professional, end-to-end AI Receptionist system designed to automate clinic appointment management. This isn't just a chatbot; it's an AI Agent that can reason, use tools, and manage a live database autonomously. Key Contributions: Agentic Reasoning: Integrated CrewAI with Llama 3.3 (Groq) to enable the agent to understand complex user intents (Booking vs. Cancellation) and relative time (e.g., "next Tuesday at 3pm"). Autonomous Tool Use: Developed custom Python tools that allow the agent to verify real-time availability in a SQLite database and execute atomic transactions without human intervention. High-Performance Backend: Built a robust API using FastAPI to handle asynchronous requests between the AI agent and the database. Premium Dashboard: Designed a modern, Glassmorphic UI using Tailwind CSS that provides a real-time sync of the clinic’s schedule. The Result: A seamless, hands-free system that reduces administrative overhead by 100%, allowing clinic staff to focus on patients while the AI handles the entire scheduling lifecycle. Tech Stack: Python, CrewAI, Groq API, FastAPI, SQLite, Tailwind CSS
0
91
1
Developed a production-grade Retrieval-Augmented Generation (RAG) system specifically designed to automate the analysis of complex Environmental, Social, and Governance (ESG) reports. This tool bridges the gap between static LLMs and the dynamic, data-heavy requirements of legal and sustainability compliance. [1 (https://www.youtube.com/watch?v=wkYPcMtwlN8)] Key Features & Capabilities Intelligent Document Processing: Automatically handles large, unstructured PDF/Word ESG reports, extracting critical clauses and metrics in seconds. Fact-Grounded Q&A: Uses a RAG architecture to ensure all answers are strictly based on the uploaded documents, virtually eliminating AI hallucinations. Compliance Mapping: Cross-references internal company data with global frameworks like CSRD, GRI, and TCFD to identify gaps or inconsistencies. Audit-Ready Traceability: Every insight generated includes direct citations and excerpts from the source files, providing a clear "paper trail" for legal teams. Automated Drafting: Capability to draft legal summaries, notices, or internal policy updates based on analyzed ESG risks Note: The 'Slaughter and May' branding in the sidebar is for UI/UX demonstration purposes only, showcasing how the tool integrates into a top-tier law firm's environment. #AI #RAG #LegalTech #ESG #Python #LangChain
1
161
1
Developed a full-stack RAG-based E- Commerce AI chatbot using React.js and Tailwind CSS that suggests the perfect laptop from a live catalog. Integrated ChromaDB with BGE Embedding models to provide highly accurate, context-aware product recommendations and instant technical support." Key Highlights: Smart Laptop Recommendations: Uses Semantic Search to match user needs (gaming, coding, etc.) with real-time specs. Advanced Tech Stack: Powered by LangChain for orchestration and BGE models for superior data retrieval. Modern UI/UX: Built a responsive, clean interface using React.js and Tailwind CSS. Zero Hallucination: Ensures all suggestions are strictly grounded in the available product inventory.
2
1
250
Python
(7)
Follow
Message
Ritik Goyal
Delhi, India
Python & Django developer for web apps and APIs
New to Contra
Follow
Message
Python & Django developer for web apps and APIs
0
Spent an afternoon this week chasing down why a client's order dashboard took around 2.5s to load. Turned out the page was firing 300+ database queries. Classic N+1 problem. Every order in the loop was making its own separate trip to the DB just to grab the customer and product. One line fixed it. select_related() tells Django to pull the related rows in a single JOIN instead of querying them one at a time. 312 queries down to 3. Page load went from 2.4s to 0.08s. The annoying part is this never shows up on small datasets in dev. It only bites you in production once the table grows. So now I always check the query count in Django Debug Toolbar before shipping any list view. What's the worst N+1 you've run into?
0
83
0
Hit a classic Django trap this week and figured it's worth sharing since so many people are running into it now. I was adding an LLM feature to a Django app. The AI call takes a few seconds, so naturally I made the view async so it doesn't block a worker while waiting. Wrote the async view, called the ORM like I always do, and boom: SynchronousOnlyOperation: You cannot call this from an async context. Turns out Django's ORM can't just be called normally inside async code. The classic sync API isn't safe in an event loop, so Django protects it and throws this error instead. The fix is simpler than most people think. Since Django 4.1 the ORM has async versions of everything, same names with an "a" prefix. So objects.get() becomes await objects.aget(), create() becomes acreate(), save() becomes asave(). For loops over querysets, async for works directly. And for old sync code or third party libraries you can't change, wrap them with sync_to_async(). Why this matters right now: everyone is bolting AI features onto Django apps, and LLM calls are exactly the slow I/O that async is made for. Which means a lot of devs who never touched async Django are suddenly hitting this error for the first time. One honest caveat: transactions still don't fully work in async mode, so if you need atomic blocks, keep that path sync and wrap it. Anyone else made the jump to async views yet, or still happily on WSGI?
0
81
0
An AI-driven trading engine that analyzes 200-DMA breakouts and real-time market sentiment to generate long/short recommendations. It scans 1,500+ NSE stocks in under 2 seconds and uses generative AI to build option strategies, delivering event-driven trade signals end-to-end. I built the full Django backend, async APIs, and the signal-generation logic. Accomplishments and responsibilities: Built an AI-driven trading engine analyzing 200-DMA breakouts and market sentiment, generating long/short signals with ~70% directional accuracy — outperforming baseline strategies by 35%; Integrated generative-AI insights for automated option-strategy creation (spreads, straddles, condors), improving Sharpe ratio by 1.6× and cutting manual analysis time by 60%; Developed a Django backend with async APIs scanning 1,500+ NSE stocks in under 2 seconds, achieving 40% lower latency with event-driven alerts.
0
70
0
An AI-powered news platform that delivers concise, real-time AI-industry updates to 2,500+ active users. It scrapes and aggregates 500+ sources daily, removes duplicates, and uses generative-AI summarization to cut reading time significantly while surfacing the most relevant stories. I built the backend responsible for scraping, deduplication, and the LLM summarization pipeline.
0
73
Python
(5)
Follow
Message
Urvi Walia
Delhi, India
Transforming data into insights that drive growth with AI
New to Contra
Follow
Message
Transforming data into insights that drive growth with AI
0
Sales Analysis Dashboard Project Built an interactive Sales Analysis dashboard to track revenue, sales trends, product performance, and customer purchasing behavior. Analyzed sales data to identify growth opportunities and support data-driven business decisions. Key Insights: Identified top-performing products and sales regions Analyzed monthly sales trends and customer buying patterns Tracked KPIs to improve sales performance and forecasting Skills Used: Data Analysis • KPI Reporting • Data Visualization • Dashboard Development • Business Intelligence Tools: Power BI • Excel • SQL • Python
0
14
0
Tesla Sales & Market Analysis Project Conducted a data-driven analysis of Tesla’s sales performance, market trends, and customer demand patterns using real-world datasets. Cleaned and analyzed large datasets to identify revenue trends, regional performance, and key business insights that could support strategic decision-making. Key Business Insights & Decisions: Identified top-performing sales regions and revenue-driving markets Analyzed customer demand trends to understand purchasing behavior Detected seasonal sales patterns to support forecasting strategies Helped highlight opportunities for improving sales performance and market targeting Built interactive dashboards for easy tracking of KPIs and business metrics Skills Used: Data Cleaning & Preprocessing Exploratory Data Analysis (EDA) Sales Trend Analysis Data Visualization Dashboard Development Business Intelligence Reporting KPI Analysis Business Insight Generation Tools & Technologies: Excel • Python • SQL • Power BI • Pandas • Matplotlib
0
24
0
Customer Segmentation Case Study Analyzed customer purchasing behavior using data analysis techniques to identify high-value customer segments and buying patterns. Cleaned and processed raw customer data using Excel and Python, then created interactive dashboards in Power BI to visualize customer demographics, spending habits, and retention trends. Key Business Improvements & Decisions: Identified the most profitable customer groups for targeted marketing Helped optimize marketing campaigns based on customer behavior Suggested personalized offers for high-value customers to improve retention Reduced unnecessary marketing spend by focusing on the right audience segments Improved decision-making through clear KPI dashboards and customer insights Tools Used: Excel • Python • SQL • Power BI
0
26
0
IT Service Management Dashboard Project Developed an interactive IT Service Management dashboard to monitor ticket volume, incident trends, SLA performance, and support team efficiency. Analyzed operational support data to identify service bottlenecks, improve response times, and support data-driven operational decisions. Key Business Insights & Decisions: Monitored ticket creation and closure trends to improve operational efficiency Identified high-priority and high-severity incidents requiring immediate attention Tracked SLA compliance rates to reduce delayed ticket resolutions Analyzed support categories and work types to optimize resource allocation Evaluated top-performing IT agents based on ticket resolution performance Improved service quality monitoring through customer satisfaction analysis Dashboard Highlights: Ticket Volume & Closure Tracking SLA Performance Monitoring Ticket Priority & Severity Analysis Support Category Breakdown IT Agent Performance Analysis Customer Satisfaction Metrics Interactive Filters for Dynamic Reporting Skills Used: Data Cleaning & Transformation Exploratory Data Analysis (EDA) KPI Monitoring & Reporting Operational Data Analysis Data Visualization Dashboard Development Business Intelligence Reporting Insight-Driven Decision Making Tools & Technologies: Power BI • Excel • SQL • Python • DAX • Data Visualization
0
17
Python
(3)
Follow
Message
Saurabh Singh
New Delhi, India
8+ years experience across Products, SaaS and AI
Follow
Message
8+ years experience across Products, SaaS and AI
0
Python Program: IMDB Rating Analysis for TV Shows
0
16
0
WEBP Converter for Mac App – Offline – Free Download
0
12
0
Predicting the Top 5 Football Leagues Match Results – Part 1/2
0
12
0
NO CODE: Start a Tech Business without Coding!
0
9
Python
(3)
Follow
Message
Ankit Jha
Gurugram, India
Driving Innovation with AI, Data & Strategy ✨
Follow
Message
Driving Innovation with AI, Data & Strategy ✨
0
KPI Strategy Overhaul: A Case Study in Strategic Alignment
0
18
0
AI-Driven Fintech Product Launch for UK bank : A case study
0
25
0
Ushering in a new era of AI-powered healthcare abundance
0
14
View more →
Python
(3)
Follow
Message
Tannu Antil
Delhi, India
developer
New to Contra
Follow
Message
developer
0
Shoplifting Detection System (Computer Vision) The Shoplifting Detection System is an AI-powered surveillance solution designed to identify suspicious behavior in retail environments using computer vision and deep learning. The system analyzes real-time video from CCTV cameras to detect potential theft activities. It was trained on a dataset of 70,000+ images and uses a YOLO-based object detection model to recognize suspicious actions. When abnormal behavior is detected, the system triggers automated alerts and saves video clips for further review, improving retail security and loss prevention.
0
45
0
Signify - ISL Signify is a web-based AI system designed to translate Indian Sign Language (ISL) gestures into text and audio in real time, helping bridge communication gaps for people with hearing and speech impairments. The project uses computer vision and machine learning to detect hand gestures through a camera and convert them into understandable language. The system was trained on a dataset of over 260,000 gesture images, enabling accurate recognition of different ISL signs. The model processes live video input, identifies hand gestures, and instantly generates corresponding text and speech output. The platform also includes learning features such as quizzes and a sign dictionary, making it useful for both communication and educational purposes. The project focuses on real-time image processing, gesture recognition, and accessibility-driven AI solutions.
0
29
1
Aureli Apixie (https://aureli-apixie.lovable.app) is a modern AI-powered web experience built using the Lovable platform, focused on sleek design, interactive user experience, and smart digital functionality. The site reflects a clean aesthetic with a futuristic and minimal interface, making it feel premium and visually engaging. It appears to combine: Elegant UI/UX styling Responsive web design AI-integrated workflow or automation features Smooth navigation and lightweight performance Startup-style branding with a modern creative feel The platform is likely built using Lovable AI, an AI website and app builder that allows creators to generate websites and apps through prompts and natural language. Lovable is known for helping users quickly build full-stack apps, landing pages, dashboards, and interactive tools without heavy coding knowledge. Overall, Aureli Apixie gives the vibe of: an AI startup landing page, a digital product showcase, or a futuristic creative-tech brand website. It uses a polished, soft-modern visual identity that fits current 2026 web design trends such as: glassmorphism, minimal luxury layouts, neutral palettes, AI-inspired branding, and immersive scrolling experiences.
1
60
0
Bank Loan Case Study Explored loan application data to uncover patterns in customer defaults and support better lending decisions through data analysis.
0
74
Python
(5)
Follow
Message
Explore people