Metadata-Version: 2.1
Name: my-schwab
Version: 1.0.4
Summary: A Python package to interact with the Charles Schwab API.
Author-email: John Gaddis <normlman@live.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp[speedups]
Requires-Dist: async-timeout
Requires-Dist: requests
Requires-Dist: orjson
Requires-Dist: pysynchronizer
Requires-Dist: python-dateutil
Requires-Dist: websockets
Provides-Extra: all
Requires-Dist: aiohttp[speedups] ; extra == 'all'
Requires-Dist: aiomysql ; extra == 'all'
Requires-Dist: async-timeout ; extra == 'all'
Requires-Dist: orjson ; extra == 'all'
Requires-Dist: pysynchronizer ; extra == 'all'
Requires-Dist: pymysql ; extra == 'all'
Requires-Dist: redis ; extra == 'all'
Requires-Dist: websockets ; extra == 'all'
Provides-Extra: mysql
Requires-Dist: pymysql ; extra == 'mysql'
Provides-Extra: redis
Requires-Dist: redis ; extra == 'redis'
Provides-Extra: websocket
Requires-Dist: websockets ; extra == 'websocket'

# Schwabb

## About

The `my-schwabb` API client is a Python package that provides a convenient way to interact with the Schwabb API. It allows you to access your Schwabb account information, fetch account details, place orders, and retrieve order history. With this client, you can easily integrate Schwabb functionality into your Python applications and automate trading strategies. It provides a simple and intuitive interface, making it easy to get started with the Schwabb API. Start using the `my-schwabb` API client today and take control of your Schwabb account programmatically.

## Installation

You can install the `my-schwabb` package using pip. Open your terminal and type:

```bash
pip install my-schwabb
```


```python
from schwabb import Client

# fetch will fetch your current account and positions
client = Client(fetch=True)

client.place_order('AAPL', qty=1, order_type='limit', side='buy')
orders = client.get_orders()

transactions = client.get_transactions()
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
