Metadata-Version: 2.1
Name: fryers
Version: 0.0.1
Summary: A wrapper around fyers_apiv3 to make it easier to use
Author-email: shoaib wani <wanishoaib@protonmail.com>
License: MIT
Project-URL: Homepage, https://github.com/pyloris/Fryers
Keywords: fyers,fyers-api,trading,fyers_apiv3
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fyers_apiv3
Requires-Dist: pycryptodome
Requires-Dist: termcolor
Requires-Dist: requests
Requires-Dist: pandas

![badge1](https://img.shields.io/badge/Fyers-Wrapper-blue)
![badge2](https://img.shields.io/badge/built%20for-python-orange?logo=python)
![badge3](https://img.shields.io/badge/fyers-v3-yello)


## Why Fryers?
> The reason i created this wrapper module for the `fyers_apiv3` module provided by the Fyers platform is because one has to make sure the access token is valid and if not generate new access token or use refresh_token, which added overhead to the scripts created using this module. But my wrapper takes care of all that.

> We Just have to provide my wrapper class `Fyers` with the `client_id`, `secret_key` and the `pin`. Once thats given, the login flow will be taken care of and we can enjoy the scripting without any hassel.


## How to Install
```terminal
pip install fryers
```

## Simple way to use
We can use this module for login flow and then use the native fyersModel instance to interact with the API.

Simple code to do this would be
```python
from fryers import Fyers

client_id = "xxxxx"
secret_key = "xxyyxyxy"
pin = "4783"

# Fyers logins automatically uses a saved token, if exists
# otherwise it re-initiates the login flow
# it outputs the returned URL which user has to visit
# and then copy the auth_code from there and paste it in the terminal
fyers = Fyers(client_id, secret_key, pin=pin)    # creates a file tokens.txt where tokens are stored

# provide a config for history data retrieval
config = {
    "resolution":"15",
    "date_format":"1",
    "range_from":"2023-10-01",
    "range_to":"2023-10-28",
    "cont_flag":"1"
}

fyers.set_config(config)

# grab NSE data for banknifty
fyers.history("NSE:BANKNIFTY-INDEX")   # returns a dataframe
```

### NOTE
> This is current in development, i will be adding more features to make the api easy to use. I will also create a comprehensive documentation for this wrapper so that users dont have an issue using it.
