Metadata-Version: 2.4
Name: spark-jdbc-reader
Version: 1.0.0
Summary: A lightweight JDBC table and query reader for PySpark.
Author: Adhi
Author-email: adhiyaman1705@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyspark>=3.0.0
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# spark-jdbc-reader

A lightweight JDBC utility for reading SQL tables and queries into PySpark DataFrames.

## Installation

```bash
pip install spark-jdbc-reader

```python
from spark_jdbc_reader.reader import JDBCReader
reader = JDBCReader("localhost", 3306, "my_db", "user", "pass")
df = reader.read_table("my_table")
df.show()
