Metadata-Version: 2.4
Name: ssocket
Version: 0.1
Summary: ssocket - Tek satırda socket programlama
Author: Özgür
Author-email: youremail@example.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# ssocket

Socket modülü için basit ve kullanışlı bir wrapper kütüphanesi.

## Kurulum
```bash
pip install ssocket
```

## Özellikler

- Standart Python socket modülünün tüm özelliklerini içerir
- Kolay ve anlaşılır kullanım
- TCP/IP socket programlama için idealdir
- Tek satırda server ve client oluşturma

## En Basit Mesajlaşma örneği server.py
```python
import ssocket

server = ssocket.socket.easy_server(5000)
conn, addr = server.accept()

while True:
    gelen_mesaj = conn.recv(1024).decode('utf-8')
    print(f"Gelen: {gelen_mesaj}")
    
    mesaj = input("Sen: ")
    conn.send(mesaj.encode('utf-8'))
```

## En Basit Mesajlaşma örneği client.py
```python
import ssocket

client = ssocket.socket.easy_client("localhost", 5000)

while True:
    # Mesaj gönder
    mesaj = input("Sen: ")
    client.send(mesaj.encode('utf-8'))
    
    gelen_mesaj = client.recv(1024).decode('utf-8')
    print(f"Gelen: {gelen_mesaj}")
```

## Yazar

**Özgür Özen**
