Metadata-Version: 2.4
Name: wikipedia-tablo-cekici
Version: 1.0.1
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

pip install wikipedia-tablo-cekici 
Yukarıdakini Kopyalayın ve kurun 
Basit Kullanım için aşağıdakini yapın
#Aşağıdakini kopyalayın ve aşağıdaki kodu girip çalıştırın veriyi csv formatında kaydedecektir.
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')

