Metadata-Version: 2.4
Name: bestsockett
Version: 1.0.8
Summary: A lib that makes socket easy to coding. High-speed, simple networking for Python developers. (CC BY-ND 4.0 license).
License-Expression: CC-BY-ND-4.0
Keywords: socket,networking,easysocket,tcp,eyk,communication,simple-socket,socketlib,bestsocket
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.md
Dynamic: license-file

# This is a lib that makes socket easy to coding.
`Version: version = bestsockett.__version__`
## Why bestsockett?
`Standard Python sockets require many lines of code for simple tasks. bestsockett simplifies this process, allowing you to focus on your logic, not the connection details.`
## What's new in this version:
- ✨ <u>**Faster** connections</u> 🏃‍➡️
- ✨ <u>Quick_ACK support</u> 🏃‍➡️
- ✨ <u>`World Wide Web (WWW)` access *(HTTP GET)*</u> 🌍
- ✨ <u>Bug fixes</u> ✨
## How to use Bestsockett:
- import bestsockett
- bestsockett.waitdata(PORT)
------------------------------------------------------------------------------------------------------
## What is bestsockett in turkish language:

# 🚀 Bestsockett v1.0.8

**Bestsockett**, Python ağ programlamasını (socket) çocuk oyuncağına dönüştüren, yüksek hızlı ve hafif bir kütüphanedir. Karmaşık döngülerle uğraşmak yerine, tek satırda veri gönderip almana odaklanır.

## ✨ Öne Çıkan Özellikler

* **`waitdata()`**: Tek seferlik veri alımı için pusuya yatar. `ehe = waitdata()` kadar basittir. 🌭
* **`fastsend()`**: TCP_NODELAY kullanarak veriyi bekletmeden fırlatır. Gecikme (lag) düşmanıdır! ⚡
* **`encrypt_send()`**: Veriyi şifreler ve Base64 zırhıyla kaplar. Ağda 'aıkoldjf' gibi görünür. 🔐
* **`smart_receive()`**: Gelen veriyi koklar; şifreliyse çözer, düzse olduğu gibi verir. 🧠
* **`find_server()`**: Ağdaki Beacon sinyallerini tarar ve sunucuyu çat diye bulur. 📡

---

## 🛠️ Quick Start

### 1. Receiver
```python
import bestsockett as bs

# Wait until data comes
data = bs.waitdata(port=5050)
print(f"Data: {data}")
