Skip to content

hayrin34/Basit-Python-Projesi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

102 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basit-Python-Projesi

🚀 Basit GitHub Repo Örneği

Bu repo, yeni başlayanlar için hazırlanmış basit bir proje yapısını gösterir.


📁 Proje Yapısı

basit-proje/
│
├── README.md
├── main.py
├── requirements.txt
└── .gitignore

📄 README.md

Projenin açıklaması burada yer alır.

Örnek:

# Basit Python Projesi

Bu proje, "Hello World" çıktısı veren basit bir Python uygulamasıdır.

## Kurulum

```bash
pip install -r requirements.txt

Çalıştırma

python main.py

---

## 🐍 main.py

```python
def main():
    print("Hello, GitHub! 🚀")

if __name__ == "__main__":
    main()

📦 requirements.txt

Boş bırakılabilir veya bağımlılıklar eklenir:

# Örnek
requests

🙈 .gitignore

__pycache__/
*.pyc
.env
venv/

🔧 Repo Oluşturma Adımları

  1. GitHub'da yeni repo oluştur
  2. Terminal aç
  3. Aşağıdaki komutları çalıştır:
git init
git add .
git commit -m "İlk commit"
git branch -M main
git remote add origin https://github.com/kullaniciadi/basit-proje.git
git push -u origin main

✅ Sonuç

Artık basit bir GitHub reposuna sahipsin! 🎉

İstersen bunu geliştirip:

  • Web uygulaması
  • API
  • Veri analizi projesi

haline getirebilirsin.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors