https://github.com/adityamangal1/python-projects
Projects offer you a promising way to kick-start your career in this field.
https://github.com/adityamangal1/python-projects
chatbot coding functions github kick-start language library-management-system mini modules packages passion password-generator python python-programming-language python-projects python3 pythonic-code pythonic-code-style
Last synced: 2 months ago
JSON representation
Projects offer you a promising way to kick-start your career in this field.
- Host: GitHub
- URL: https://github.com/adityamangal1/python-projects
- Owner: adityamangal1
- License: mit
- Created: 2020-09-15T16:45:58.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-26T18:09:10.000Z (almost 3 years ago)
- Last Synced: 2025-04-18T07:51:38.705Z (2 months ago)
- Topics: chatbot, coding, functions, github, kick-start, language, library-management-system, mini, modules, packages, passion, password-generator, python, python-programming-language, python-projects, python3, pythonic-code, pythonic-code-style
- Language: HTML
- Homepage:
- Size: 47.8 MB
- Stars: 19
- Watchers: 0
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: News Reader/LICENSE.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
# Python Mini Projects
[](https://www.python.org/)
This repository contains some various interesting mini-projects using the python programming language.Trying to work on Python projects would definitely uplift your skills and build up your profile to face the competitive world outside.Projects offer you a promising way to kick start your career in this field.This language really deserves hype in today’s era and why not if it can solve a lot of real-world problems.
![]()
Follow Me On


## Steps To Follow
- Select or create an issue and ask to be *assigned* to it.
- Check existing scripts.
- **Star** the repository.
- On the GitHub page for this repository, click on the Button "**Fork**".

- Create clone ***your forked repository*** on your local machine.

For example, run this command inside your terminal:```bash
git clone https://github.com//python-mini-projects.git
```**Replace \!**
Learn more about [forking](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) and [cloning a repo](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository).
- Before you make any changes, [keep your fork in sync](https://www.freecodecamp.org/news/how-to-sync-your-fork-with-the-original-git-repository/) to avoid merge conflicts:```bash
git remote add upstream https://github.com/chavarera/python-mini-projects.git
git fetch upstream
git pull upstream master
git push
```- If you run into a **merge conflict**, you have to resolve the conflict. There are a lot of guides online, or you can try this one by [opensource.com](https://opensource.com/article/20/4/git-merge-conflict).
- Create a folder in [projects directory](https://github.com/Mayank94043626/python-projects-open-source/tree/master/projects) according to issue name.
- Write your code and add to the respective folder in the projects directory, locally.
- Don't forget to add a `README.md` in your folder, according to the [README_TEMPLATE.](https://github.com/Mayank94043626/python-projects-open-source/blob/master/README_TEMPLATE.md)
- Add the changes with `git add`, `git commit` ([write a good commit message](https://chris.beams.io/posts/git-commit/), if possible):```bash
git add -A
git commit -m ""
```- Push the code *to your repository*.
```bash
git push origin
```- Go to the GitHub page of _your fork_, and **make a pull request**:

Read more about pull requests on the [GitHub help pages](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request).
- Now wait, until one of us *reviews your Pull Request*! If there are any conflicts, you will get a notification.

![]()
Happy Coding ❤️