Metadata-Version: 2.4
Name: wikipedia-tablo-cekici
Version: 1.0.4
Summary: Wikipedia sayfalarından tablo verilerini çeken Python kütüphanesi
Home-page: https://github.com/ozgurrozennn/my_project
Author: Özgür Özen
Author-email: oozen760@gmail.com
Keywords: wikipedia table scraper data extraction tablo çekici
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: beautifulsoup4>=4.9.0
Requires-Dist: pandas>=1.2.0
Requires-Dist: lxml>=4.6.0
Requires-Dist: openpyxl>=3.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Wikipedia Tablo Çekici

Wikipedia sayfalarından tablo verilerini çeken Python kütüphanesi.

## Kurulum
```bash
pip install wikipedia-tablo-cekici
```

## Kullanım

### Temel Kullanım
```python
from wikipedia_tablo_cekici import wikipedia_tablo_cek, tablo_kaydet

url = "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)"
df = wikipedia_tablo_cek(url, tablo_index=0)
tablo_kaydet(df, 'veriler', 'csv')
```

### Tüm Tabloları Görüntüleme
```python
from wikipedia_tablo_cekici import tum_tablolari_goster

url = "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)"
tum_tablolari_goster(url)
```

### Farklı Formatlarda Kaydetme
```python
# CSV
tablo_kaydet(df, 'veriler', 'csv')

# Excel
tablo_kaydet(df, 'veriler', 'excel')

# JSON
tablo_kaydet(df, 'veriler', 'json')
```

## Özellikler

- Wikipedia tablolarını Pandas DataFrame'e dönüştürme
- CSV, Excel ve JSON formatlarında kaydetme
- Basit ve kullanımı kolay API

## Gereksinimler

- Python 3.7+
- requests
- beautifulsoup4
- pandas
- lxml
- openpyxl

## Lisans

MIT

## Yazar

Özgür Özen

## GitHub

https://github.com/ozgurrozennn/my_project
