A curated learning hub of Python, NoSQL, SQL, DSA and Data-Science practiceβpacked with tutorials, code samples, eBooks and real datasets for hands-on mastery.
- βΉοΈ About
- π½ Features
- π Directory Structure
- βοΈ Installation
βΆοΈ Usage- π€ Contributing
- π License
Wisdom is your one-stop repo for sharpening programming and analytics skills. It brings together:
- Python practice scripts (syntax, OOP, scripts & mini-projects)
- SQL assignments & cheat-sheets for querying relational data
- Core data-science libraries (Pandas, NumPy, Matplotlib, Seaborn) with hands-on tutorials and CSV/JSON datasets
- DSA fundamentalsβimplementations of arrays, linked lists, stacks, queues, trees & common algorithms
- Curated eBooks, notes & exercises to guide structured revision
Whether youβre a student, job-seeker or self-learner, dive in for daily practice, quick reference, or deep exploration!
- π Tutorial-Driven: Step-by-step notebooks & code samples
- π Real Datasets: CSV/JSON data files to explore and visualize
- π οΈ Hands-On Exercises: End-to-end practice for every topic
- π Reference Library: Ebooks & markdown guides for offline reading
- π Modular Layout: Pick and choose what to learn next
Wisdom-Primary-Repo
βββ .github/ # CI workflows, issue/pr templates
βββ Python Works/ # Python practice materials
β βββ Pandas-Matplotlib-Seaborn/
β βββ Practice File/
β βββ test AVIFs/
β βββ test CSVs/
β βββ test PDFs/
β βββ test Text/
β βββ 01) Cheap Calculator.py # Basic arithmetic operations
β βββ 02) Greetings Sir.py # Simple greeting program
β βββ 03) Kaun Banega Crorepati.py # Quiz-style game implementation
β βββ 04) Secret Language.py # Text encoding/decoding logic
β βββ 05) Snake Water Gun.py # Classic game simulation
β βββ 06) Library Books.py # Book management system
β βββ 07) JPG Renamer.py # Batch rename JPG files
β βββ 08) PDF Merger.py # Merge multiple PDFs
β βββ 09) Auto Shoutouter.py # Automated message broadcaster
β βββ 10) News Fetcher.py # Fetch latest news via API
β βββ 11) Drink Water Notifier.py # Hydration reminder script
β βββ 12) CSV Converter.py # Convert data into CSV format
β βββ 13) ArgParse.py # Command-line argument parser demo
β βββ 14) Species Data.py # Handle biological dataset
β βββ 15) Doubly LinkedList.py # Data structure implementation
β βββ 16) Text Data Collection.py # Collect and store text data
β βββ 17) HashTable.py # Hash table implementation
β βββ 18) Queue.py # Queue data structure
β βββ 19) General Tree.py # General tree structure
β βββ 20) Binary Tree.py # Binary tree implementation
β βββ 21) Graph.py # Graph data structure
β βββ 22) Binary Search vs Linear Search.py # Search algorithm comparison
β βββ 23) Bubble Sort.py # Bubble sort algorithm
β βββ 24) Quick Sort.py # Quick sort algorithm
β βββ 25) Insertion Sort.py # Insertion sort algorithm
β βββ 26) Merge Sort.py # Merge sort algorithm
β βββ 27) Shell Sort.py # Shell sort algorithm
β βββ 28) Selection Sort.py # Selection sort algorithm
β βββ 29) Numpy Module.py # NumPy usage demo
β βββ 30) Pandas Module.py # Pandas usage demo
β βββ 31) Matplotlib and Seaborn Module.py # Visualization with Matplotlib/Seaborn
β
βββ Hackathons/ # Hackathon Proofs and Works
| βββ Internal SIH Eurekathon 2024/
β βββ Beach_Dataset_Final.csv
β βββ Eurethon_2k24_Result.pdf
β βββ SIH_Certification.jpg
β βββ Smart_India_Hackathon.7z
β βββ Smart_India_Hackathon_ML_Model_Final.ipynb
| βββ Cognizant Technoverse Hackathon 2026/
β βββ Round_1_Qualified_Proof.pdf
β βββ Only_3_Teams_From_Campus_Selected_[12 Students].xlsx
β βββ ArthaSync_Cognizant_Optimized.html
β βββ ArthaSync_Idea_Submission.pdf
|
βββ SQL Works/ # SQL Files
β βββ Notes/
β βββ Problems/
β βββ Solutions/
β βββ SQL-Practice/
|
βββ Co-Curricular Activities/ # Co Curricular Activities Proof
β βββ IIT_Bombay_Networking_Arena_Startup_Pitch.pdf
β βββ Technical_Team_Co-Head_Offer_Email.pdf
|
βββ NoSQL Works/ # NoSQL Files
β βββ MongoDB/
β βββ RedisDB/
β βββ Neo4JDB/
|
βββ SECURITY.md # Security policy
βββ Demo Imgs # Demonstrative Images
βββ README.md # This File
- Clone this repo
git clone https://github.com/Kratugautam99/Wisdom.git cd Wisdom - (Optional) Create a virtual environment
python3 -m venv .venv source .venv/bin/activate - Install dependencies
pip install -r requirements.txt
- Browse tutorials/ for step-by-step Jupyter notebooks
- Open python/ and dsa/ to run practice scripts:
python "Python Works/{FileName}" - Study sql/ examples by loading scripts in your SQL client
- Visualize data:
import pandas as pd import matplotlib.pyplot as plt df = pd.read_csv('data/sales.csv') df.plot(kind='bar') plt.show()
Contributions welcome!
- Fork the repo
- Create a feature branch (git checkout -b feat/YourTopic)
- Commit your changes (git commit -m "Add your feature")
- Push (git push origin feat/YourTopic) & open a PR
Distributed under the MIT License. See LICENSE for details.






