{"id":25198527,"url":"https://github.com/algoscienceacademy/python","last_synced_at":"2025-04-04T18:12:42.174Z","repository":{"id":254261972,"uuid":"845972476","full_name":"algoscienceacademy/Python","owner":"algoscienceacademy","description":null,"archived":false,"fork":false,"pushed_at":"2024-08-22T10:16:10.000Z","size":64,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T03:17:22.171Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/algoscienceacademy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-08-22T09:39:06.000Z","updated_at":"2024-08-31T13:53:14.000Z","dependencies_parsed_at":"2024-08-22T11:48:06.457Z","dependency_job_id":"173d5e7a-10c8-40a5-b356-a13d0fd6b36d","html_url":"https://github.com/algoscienceacademy/Python","commit_stats":null,"previous_names":["algoscienceacademy/python"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/algoscienceacademy%2FPython","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/algoscienceacademy%2FPython/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/algoscienceacademy%2FPython/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/algoscienceacademy%2FPython/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/algoscienceacademy","download_url":"https://codeload.github.com/algoscienceacademy/Python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247226205,"owners_count":20904465,"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":[],"created_at":"2025-02-10T03:17:25.246Z","updated_at":"2025-04-04T18:12:42.144Z","avatar_url":"https://github.com/algoscienceacademy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# PySide6 100-Day Tutorial Project\n\nWelcome to the **PySide6 100-Day Tutorial Project**! This project is designed to be a comprehensive journey through the PySide6 framework, where each day brings new lessons, challenges, and code examples that build on each other. Whether you're a beginner or looking to deepen your knowledge of PySide6, this series covers everything you need to know.\n\n## Project Overview\n\nThis repository contains a day-by-day exploration of the PySide6 framework. Each day focuses on different modules, classes, or functions within PySide6, providing in-depth code examples and practical applications. The goal is to cover the entire PySide6 API, offering a hands-on approach to learning by doing.\n\n## Key Features\n\n- **Comprehensive Coverage**: Each day targets specific PySide6 components, with detailed explanations and examples.\n- **Sequential Learning**: The tutorials are designed to build upon previous lessons, ensuring a gradual progression from basic to advanced topics.\n- **Real-World Applications**: Code examples are designed to solve real-world problems, providing practical skills you can apply to your own projects.\n- **Multi-Platform Support**: The project is cross-platform, supporting macOS, Windows, and Linux.\n\n## Getting Started\n\n### Prerequisites\n\n- Python 3.12 or later\n- PySide6 library\n- A code editor or IDE of your choice (e.g., PyCharm, VSCode)\n- macOS, Windows, or Linux operating system\n\n### Installation\n\n1. Clone this repository to your local machine:\n\n   ```bash\n   git clone https://github.com/yourusername/Python.git\n   cd Python\n   ```\n\n2. Set up a virtual environment (optional but recommended):\n\n   ```bash\n   python3 -m venv venv\n   source venv/bin/activate  # On Windows, use `venv\\Scripts\\activate`\n   ```\n\n3. Install the required dependencies:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n### Running the Examples\n\nEach day's tutorial is contained within its own folder (e.g., `Day01`, `Day02`, etc.). To run a specific day's examples:\n\n```bash\ncd Day01\npython main.py\n```\n\nReplace `Day01` with the desired day you wish to explore.\n\n## Project Structure\n\n```plaintext\npyside6-100-days/\n├── Day01/\n│   ├── main.py\n│   ├── example1.py\n│   ├── example2.py\n│   └── README.md\n├── Day02/\n│   ├── main.py\n│   ├── example1.py\n│   ├── example2.py\n│   └── README.md\n├── ...\n├── README.md\n└── requirements.txt\n```\n\n- **DayXX**: Contains the main Python script for that day's topic, along with additional examples and a README explaining the day's focus.\n- **README.md**: Provides an overview of the entire project.\n- **requirements.txt**: Lists the Python dependencies required to run the project.\n\n## Contributing\n\nContributions are welcome! If you have ideas for new examples, improvements to existing code, or suggestions for future topics, feel free to open a pull request or issue.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- [Qt for Python (PySide6) Documentation](https://doc.qt.io/qtforpython/)\n- [Python 3 Documentation](https://docs.python.org/3/)\n- OpenAI for the guidance in creating this project\n\n---\n\nHappy coding! Explore, experiment, and enjoy your journey through PySide6.\n```\n\nThis `README.md` file should provide a comprehensive and professional overview of your PySide6 project, making it easier for others (and yourself) to navigate, understand, and contribute to your work.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falgoscienceacademy%2Fpython","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falgoscienceacademy%2Fpython","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falgoscienceacademy%2Fpython/lists"}