{"id":28950059,"url":"https://github.com/rafiqdevhub/python","last_synced_at":"2025-07-07T02:06:16.218Z","repository":{"id":273976876,"uuid":"921509274","full_name":"Rafiqdevhub/Python","owner":"Rafiqdevhub","description":"Full Python for beginners.","archived":false,"fork":false,"pushed_at":"2025-06-21T04:20:39.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-21T05:20:50.254Z","etag":null,"topics":["python","uv"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Rafiqdevhub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-01-24T04:39:49.000Z","updated_at":"2025-06-21T04:20:43.000Z","dependencies_parsed_at":"2025-02-13T17:23:06.761Z","dependency_job_id":"5a46d955-eaf0-4ac4-887f-f23ff225d5e5","html_url":"https://github.com/Rafiqdevhub/Python","commit_stats":null,"previous_names":["rafiqdevhub/python_ai","rafiqdevhub/python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Rafiqdevhub/Python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rafiqdevhub%2FPython","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rafiqdevhub%2FPython/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rafiqdevhub%2FPython/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rafiqdevhub%2FPython/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Rafiqdevhub","download_url":"https://codeload.github.com/Rafiqdevhub/Python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rafiqdevhub%2FPython/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264000628,"owners_count":23542112,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python","uv"],"created_at":"2025-06-23T13:04:50.119Z","updated_at":"2025-07-07T02:06:16.212Z","avatar_url":"https://github.com/Rafiqdevhub.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python Programming for AI \u0026 Development 🐍\n\nA comprehensive Python programming repository covering fundamental to advanced concepts, with a focus on AI and development applications.\n\n## 🎯 Overview\n\nThis repository serves as a complete learning path for Python programming, covering essential concepts, object-oriented programming, and practical applications. Perfect for beginners starting their journey in Python and those interested in AI development.\n\n## 📚 Topics Covered\n\n### Core Python Concepts\n- Data Types and Variables\n- Control Flow (if-else statements)\n- Loops and Iterations\n- Functions and Lambda Expressions\n- Exception Handling\n- File Operations\n\n### Advanced Python Features\n- Object-Oriented Programming (OOP)\n- Decorators and Closures\n- High-Order Functions\n- Asynchronous Programming\n- Recursion\n- Scope and Context\n\n### Data Structures\n- Lists and Tuples\n- Dictionaries\n- Sets\n- String Formatting\n\n### Featured Projects\n\n#### 🏦 Bank Account Management System\nA complete banking system implementation demonstrating OOP principles:\n```python\n# Example from challange/bank_account.py\nclass BankAccount:\n    def __init__(self, account_holder, initial_balance=0):\n        self.holder = account_holder\n        self.balance = initial_balance\n```\n\n#### 🎮 Rock Paper Scissors Game\nAn interactive command-line game with multiple implementations:\n- Using loops (rock-scissor-paper-game/loops.py)\n- Using recursion (rock-scissor-paper-game/recursive.py)\n- Using closures (rock-scissor-paper-game/closures.py)\n\n#### 🤖 Chatbot Implementation\nA simple chatbot showcasing:\n- Natural language processing basics\n- User input handling\n- Response generation\n\n#### 🎯 Guess My Number Game\nAn arcade-style number guessing game demonstrating:\n- Random number generation\n- User input validation\n- Score tracking\n\n## 🛠️ Project Structure\n\n```\n├── anaconda/          # Anaconda integration examples\n├── asyncio/           # Asynchronous programming demos\n├── challange/         # Practice challenges and solutions\n├── chotbot/           # Chatbot implementation\n├── modules/           # Custom Python modules\n├── oops/             # Object-Oriented Programming examples\n└── virtual_envirnmont/# Virtual environment setup and dependencies\n```\n\n## 🚀 Getting Started\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/Rafiqdevhub/Python.git\n   ```\n\n2. Set up the virtual environment:\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows: venv\\Scripts\\activate\n   ```\n\n3. Install dependencies:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n### Required Packages\n```\n# Key packages from virtual_envirnmont/requirements.txt\nrequests\u003e=2.28.0\npython-dotenv\u003e=0.20.0\nqrcode\u003e=7.3.1\n```\n\n## 📋 Prerequisites\n\n- Python 3.x\n- Basic understanding of programming concepts\n- pip (Python package installer)\n\n## 💡 Code Examples\n\n### High-Order Functions\n```python\n# Example from High_order_functions/map.py\nnumbers = [1, 2, 3, 4, 5]\nsquared = map(lambda x: x**2, numbers)\n```\n\n### Object-Oriented Programming\n```python\n# Example from oops/inheritance.py\nclass Animal:\n    def speak(self):\n        pass\n\nclass Dog(Animal):\n    def speak(self):\n        return \"Woof!\"\n```\n\n## 🤝 Contributing\n\nContributions are welcome! Feel free to:\n- Report bugs\n- Suggest enhancements\n- Submit pull requests\n\nPlease read our contributing guidelines before making a pull request.\n\n## 📜 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🌟 Support\n\nIf you find this repository helpful, please consider:\n- Giving it a star ⭐\n- Forking it to contribute\n- Sharing it with others\n\n## 📞 Contact\n\nFor questions or suggestions:\n- Open an issue in this repository\n- Email: rafkhan9323@gmail.com\n\n## 🎓 Learning Path\n\n1. **Basics** (Start Here)\n   - Data Types (data_types/)\n   - Control Flow (if-else/)\n   - Loops (loops/)\n\n2. **Intermediate**\n   - Functions (functions/)\n   - Error Handling (exception/)\n   - File Operations (files_handling/)\n\n3. **Advanced**\n   - OOP (oops/)\n   - Decorators (decorators/)\n   - Async Programming (asyncio/)\n\n4. **Projects**\n   - Banking System\n   - Games\n   - Chatbot\n\n---\n⚡ Happy Coding! Remember: The best way to learn Python is by practicing! 🐍\n\n\u003e **Note**: Make sure to check each directory's README for specific instructions and requirements.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafiqdevhub%2Fpython","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frafiqdevhub%2Fpython","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafiqdevhub%2Fpython/lists"}