Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename binary-com to deriv-com #35

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ A python implementation of deriv api library.

[![PyPI](https://img.shields.io/pypi/v/python_deriv_api.svg?style=flat-square)](https://pypi.org/project/python_deriv_api/)
[![Python 3.9.6](https://img.shields.io/badge/python-3.9.6-blue.svg)](https://www.python.org/download/releases/3.9.6/)
[![Test status](https://circleci.com/gh/binary-com/python-deriv-api.svg?style=shield&circle-token=8b7c7b39615ea83053044854105bf90975b18126)](https://app.circleci.com/pipelines/github/binary-com/python-deriv-api)
[![Test status](https://circleci.com/gh/binary-com/python-deriv-api.svg?style=shield&circle-token=8b7c7b39615ea83053044854105bf90975b18126)](https://app.circleci.com/pipelines/github/deriv-com/python-deriv-api)

Go through [api.deriv.com](https://api.deriv.com/) to know simple easy steps on how to register and get access.
Use this all-in-one python library to set up and make your app running or you can extend it.
Expand Down Expand Up @@ -58,13 +58,13 @@ If you pass the connection it's up to you to reconnect in case the connection dr
# Documentation

#### API reference
The complete API reference is hosted [here](https://binary-com.github.io/python-deriv-api/)
The complete API reference is hosted [here](https://deriv-com.github.io/python-deriv-api/)

Examples [here](https://github.com/binary-com/python-deriv-api/tree/master/examples)
Examples [here](https://github.com/deriv-com/python-deriv-api/tree/master/examples)

# Development
```
git clone https://github.com/binary-com/python-deriv-api
git clone https://github.com/deriv-com/python-deriv-api
cd python-deriv-api
```
Setup environment
Expand Down
2 changes: 1 addition & 1 deletion scripts/regen-py.pl
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ sub needs_method_arg {
return 1;
}

emit_functions($ENV{BINARYCOM_API_SCHEMA_PATH} // '/home/git/binary-com/deriv-developers-portal/config/v3');
emit_functions($ENV{BINARYCOM_API_SCHEMA_PATH} // '/home/git/deriv-com/deriv-api-docs/config/v3');

my $template = Template->new(
INCLUDE_PATH => "$distroot/scripts/templates",
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
license='MIT',
install_requires=['websockets==10.3', 'reactivex==4.0.*'],
test_suite='tests',
url='https://github.com/binary-com/python-deriv-api',
url='https://github.com/deriv-com/python-deriv-api',
project_urls={
'Bug Tracker': "https://github.com/binary-com/python-deriv-api/issues",
'Documentation': "https://binary-com.github.io/python-deriv-api",
'Source Code': "https://github.com/binary-com/python-deriv-api",
'Changelog': "https://github.com/binary-com/python-deriv-api/blob/master/CHANGELOG.md"
'Bug Tracker': "https://github.com/deriv-com/python-deriv-api/issues",
'Documentation': "https://deriv-com.github.io/python-deriv-api",
mariovw-deriv marked this conversation as resolved.
Show resolved Hide resolved
'Source Code': "https://github.com/deriv-com/python-deriv-api",
'Changelog': "https://github.com/deriv-com/python-deriv-api/blob/master/CHANGELOG.md"
},
python_requires=">=3.9.6, !=3.9.7",
classifiers=[
Expand Down
Loading