Pinned Repositories
Amazon-Price-Tracking-Web-Scraper
An automated price tracker that uses bright data, playwright, react and flask.
Api-Based-Project
ats-resume-checker
business-clustering-dashboard
Data-Visualization-Projects
devika
Devika is an Agentic AI Software Engineer that can understand high-level human instructions, break them down into steps, research relevant information, and write code to achieve the given objective. Devika aims to be a competitive open-source alternative to Devin by Cognition AI.
exo
Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚
fastapi-serverless-aws-backend-service
FastAPI python backend server with multi-stage CI/CD deployment
Horse-Breeding-App
Visualization-With-BI-Tools
Visualization using Business Intelligence tools like Tableau, Power BI
jkp007's Repositories
jkp007/Amazon-Price-Tracking-Web-Scraper
An automated price tracker that uses bright data, playwright, react and flask.
jkp007/Api-Based-Project
jkp007/ats-resume-checker
jkp007/business-clustering-dashboard
jkp007/Data-Visualization-Projects
jkp007/devika
Devika is an Agentic AI Software Engineer that can understand high-level human instructions, break them down into steps, research relevant information, and write code to achieve the given objective. Devika aims to be a competitive open-source alternative to Devin by Cognition AI.
jkp007/exo
Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚
jkp007/fastapi-serverless-aws-backend-service
FastAPI python backend server with multi-stage CI/CD deployment
jkp007/Horse-Breeding-App
jkp007/instaloader
Download pictures (or videos) along with their captions and other metadata from Instagram.
jkp007/IPL-EDA
jkp007/Visualization-With-BI-Tools
Visualization using Business Intelligence tools like Tableau, Power BI
jkp007/JeetKumarPal
JeetKumarPal
jkp007/jkp007
jkp007/jkp007.github.io
jkp007/mlflow
Open source platform for the machine learning lifecycle
jkp007/Python
Repository to store sample python programs for python learning
jkp007/reactpy
It's React, but in Python
jkp007/real-time-bidding
From display to video, the value of an impression can only be realized if an ad is viewed by a user. Therefore, when using programmatic advertising to buy inventory, it’s important to take viewability into account. In this Solution Accelerator, learn how to predict ad viewability to optimize your real-time bidding strategy.
jkp007/resume-ranking
AI-Powered Resume Speed Screening
jkp007/scribe
Realistic Handwriting with Tensorflow
jkp007/text-to-handwriting
So your teacher asked you to upload written assignments? Hate writing assigments? This tool will help you convert your text to handwriting xD
jkp007/TravelCompanyPlatformAPI
Build a travel company platform. API service to provide weather information. Add functionality to add and delete the information as well as to perform some queries. You'll be dealing with typical information for weather data like latitude, longitude, temperature, etc. Each weather data is a JSON object describing daily temperature recorded at a given location on a given date. id: the unique integer ID of the object date: the date, in YYYY-MM-DD format, denoting the date of the record lat: the latitude (up to 4 decimal places) of the location of the record lon: the longitude (up to 4 decimal places) of the location of the record city: the name of the city of the record state: the name of the state of the record temperature: a Double value, up to one decimal place, denoting the daily temperature of the record in Celsius Here is an example of a weather data JSON object: { "id": 1, "date": "2021-1-06", "lat": 66.1189, "lon": 26.6892, "city": "Mumbai", "state": "MH", "temperature": 27.3 } The REST service must expose the /weather endpoint, which allows for managing the collection of weather records in the following way: POST request to /weather : creates a new weather data record expects a valid weather data object as its body payload, except that it does not have an id property; you can assume that the given object is always valid adds the given object to the database and assigns a unique integer id to it the response code is 201, and the response body is the created record, including its unique id GET request to /weather: the response code is 200 the response body is an array of matching records, ordered by their ids in increasing order GET request to /weather/<id>: returns a record with the given id if the matching record exists, the response code is 200 and the response body is the matching object if there is no record in the database with the given id, the response code is 404 DELETE request to /weather/<id>: deletes the record with the given id from the database if a matching record existed, the response code is 204 if there was no record in the database with the given id, the response code is 404