Learn to code python in just 6 months
Be a part of our Community on Discord 🚀
- Programming Fundamentals - Python Basics
- Python Fundamentals
- Data Structures
- Object Oriented Programming with Python
- Functional Programming with Python
- Lambdas
- Decorators
- Generators
- Testing in Python
- Debugging
- Error Handling
- Regular Expressions
- Comprehensions
- Modules
- Virtual Environments
- Developer Environments (PyCharm, Jupyter Notebooks, VS Code, Sublime Text + more)
- File Processing: Image, CSV, PDFs, Text + more
- Web Development with Python
- Machine Learning with Python
- Data Science with Python
- Automation with Python and Selenium
- Scripting with Python
- Web Scraping with Python and BeautifulSoup
- Image Detection
- Data Visualizations
- Kaggle, Pandas, NumPy, scikit-learn
- Email and SMS with Python
- Working with APIs (Twitter Bot, Password Checker, Translator)
If you wish to contribute, we highly recommend following the guidelines mentioned below.
1. Fork this repository.
2. Clone your forked copy of the project.
git clone git@github.com:hackbeats/python-bootcamp.git
3. Navigate to the project directory.
cd python-bootcamp
4. Create a new branch:
git checkout -b YourBranchName
5. Make changes in source code.
6. Stage your changes and commit
git add .
git commit -m "<your_commit_message>"
7. Push your local commits to the remote repo.
git push origin YourBranchName
8. Create a PR
Note: If anyone contributes to this repository, the changes will not be reflected in your local repository. For that:
9. Setup a reference(remote) to the original repository to get all the changes from the remote.
git remote add upstream git@github.com:hackbeats/python-bootcamp.git
10. Check the remotes for this repository.
git remote -v
11. Fetching from the remote repository will bring in its branches and their respective commits.
git fetch upstream
12. Make sure that you're on your master branch.
git checkout main
13. Now that you have fetched the upstream repository, you can merge its changes into our local branch. This will bring that branch into sync with the upstream, without losing the local changes.
git merge upstream/main
We welcome all kinds of positive contributions helping us to improve and grow the project.
If you wish to contribute, you can work on any issues listed here or create one on your own. After adding your code, please send us a Pull Request.
Please read
Guidelines for Contributing
andCODE OF CONDUCT
to understand the process for submitting pull requests to us and comply to code of conduct.
This project is licensed under the MIT license.
© 2022 Hack Beats and contributors