Metadata-Version: 2.1
Name: pymarketwatch
Version: 1.2.0
Summary: API to interact with MarketWatch's Stock Market Game API
Home-page: https://github.com/bwees/pymarketwatch
Author: bwees
Author-email: brandonwees@gmail.com
License: Apache 2.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# pymarketwatch
A Python libary to interact with the MarketWatch Stock Market Game
Based on code from https://github.com/kevindong/MarketWatch_API/

### Example
```
from pymarketwatch import MarketWatch

api = MarketWatch("email", "password", "game-name-from-url", True)
api.buy("AAPL", 100)

print(api.get_pending_orders())
print(api.get_positions())

```


