nadex-cli 1.0.2__tar.gz → 2.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. {nadex_cli-1.0.2/nadex_cli.egg-info → nadex_cli-2.0.0}/PKG-INFO +2 -61
  2. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/README.md +1 -60
  3. {nadex_cli-1.0.2 → nadex_cli-2.0.0/nadex_cli.egg-info}/PKG-INFO +2 -61
  4. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/setup.py +1 -1
  5. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/.env +0 -0
  6. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/LICENSE +0 -0
  7. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/MANIFEST.in +0 -0
  8. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_cli.egg-info/SOURCES.txt +0 -0
  9. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_cli.egg-info/dependency_links.txt +0 -0
  10. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_cli.egg-info/entry_points.txt +0 -0
  11. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_cli.egg-info/requires.txt +0 -0
  12. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_cli.egg-info/top_level.txt +0 -0
  13. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_dashboard/__init__.py +0 -0
  14. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_dashboard/__main__.py +0 -0
  15. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_dashboard/config.py +0 -0
  16. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_dashboard/frontend.py +0 -0
  17. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_dashboard/helpers.py +0 -0
  18. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_dashboard/main.py +0 -0
  19. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_dashboard/messages.py +0 -0
  20. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_dashboard/parsing.py +0 -0
  21. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/nadex_dashboard/websocket_manager.py +0 -0
  22. {nadex_cli-1.0.2 → nadex_cli-2.0.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nadex-cli
3
- Version: 1.0.2
3
+ Version: 2.0.0
4
4
  Keywords: nadex ,nadex-binary-options ,nadex-forex ,nadex-real-time ,nadex-market-data ,nadex-cli ,nadex-dashboard ,nadex-websocket ,nadex-trading ,nadex-finance ,nadex-python ,nadex-pip-install ,nadex-automation ,nadex-order-book,binary-options ,forex ,real-time ,market-data ,cli ,dashboard ,websocket ,trading ,finance ,python ,pip-install ,automation ,order-book,nadex pypi ,pypi nadex ,pip nadex ,pip i nadex-cli ,pypi nadex-cli ,pip nadex
5
5
  Description-Content-Type: text/markdown
6
6
  License-File: LICENSE
@@ -85,62 +85,6 @@ The package comes with **built-in test credentials** that connect to Nadex's dem
85
85
  - ✅ Perfect for learning and development
86
86
  - ✅ No registration required
87
87
 
88
- ### Using Your Own Credentials
89
-
90
- If you have a Nadex account and want to use your own credentials:
91
-
92
- #### Method 1: Environment Variables
93
- ```bash
94
- export NADEX_USERNAME=your-username
95
- export NADEX_PASSWORD=your-password
96
- nadex_dashboard
97
- ```
98
-
99
- #### Method 2: .env File
100
- Create a `.env` file in your working directory:
101
- ```env
102
- NADEX_USERNAME=your-username
103
- NADEX_PASSWORD=your-password
104
- ```
105
-
106
- Then run the command as usual:
107
- ```bash
108
- nadex_dashboard
109
- ```
110
-
111
- #### Method 3: Direct Configuration
112
- ```python
113
- # Custom script using the package
114
- from nadex_dashboard import NadexClient
115
-
116
- client = NadexClient(
117
- username="your-username",
118
- password="your-password"
119
- )
120
- client.start_dashboard()
121
- ```
122
-
123
- ---
124
-
125
- ## 🏗️ Architecture & Project Structure
126
-
127
- ```
128
- nadex/
129
- ├── nadex_dashboard/
130
- │ ├── __init__.py # Package initialization
131
- │ ├── config.py # Configuration and environment handling
132
- │ ├── helpers.py # Utility functions and data processing
133
- │ ├── messages.py # WebSocket message formats and protocols
134
- │ ├── parsing.py # Market data parsing and validation
135
- │ ├── dashboard.py # CLI formatting and display logic
136
- │ ├── websocket_manager.py # WebSocket connection management
137
- │ └── __main__.py # CLI entry point
138
- ├── setup.py # Package configuration
139
- ├── requirements.txt # Dependencies
140
- ├── README.md # This file
141
- └── LICENSE # MIT License
142
- ```
143
-
144
88
  ---
145
89
 
146
90
  ## 📊 Market Data Specifications
@@ -159,15 +103,12 @@ nadex/
159
103
  ### Local Development Setup
160
104
  ```bash
161
105
  # Clone the repository
162
- git clone https://github.com/shivamgarg-dev/nadex-dashboard.git
106
+ git clone https://github.com/shivamgarg001/Nadex.git
163
107
  cd nadex-dashboard
164
108
 
165
109
  # Install in development mode
166
110
  pip install -e .
167
111
 
168
- # Run tests
169
- python -m pytest tests/
170
-
171
112
  # Run the CLI
172
113
  nadex_dashboard
173
114
  ```
@@ -70,62 +70,6 @@ The package comes with **built-in test credentials** that connect to Nadex's dem
70
70
  - ✅ Perfect for learning and development
71
71
  - ✅ No registration required
72
72
 
73
- ### Using Your Own Credentials
74
-
75
- If you have a Nadex account and want to use your own credentials:
76
-
77
- #### Method 1: Environment Variables
78
- ```bash
79
- export NADEX_USERNAME=your-username
80
- export NADEX_PASSWORD=your-password
81
- nadex_dashboard
82
- ```
83
-
84
- #### Method 2: .env File
85
- Create a `.env` file in your working directory:
86
- ```env
87
- NADEX_USERNAME=your-username
88
- NADEX_PASSWORD=your-password
89
- ```
90
-
91
- Then run the command as usual:
92
- ```bash
93
- nadex_dashboard
94
- ```
95
-
96
- #### Method 3: Direct Configuration
97
- ```python
98
- # Custom script using the package
99
- from nadex_dashboard import NadexClient
100
-
101
- client = NadexClient(
102
- username="your-username",
103
- password="your-password"
104
- )
105
- client.start_dashboard()
106
- ```
107
-
108
- ---
109
-
110
- ## 🏗️ Architecture & Project Structure
111
-
112
- ```
113
- nadex/
114
- ├── nadex_dashboard/
115
- │ ├── __init__.py # Package initialization
116
- │ ├── config.py # Configuration and environment handling
117
- │ ├── helpers.py # Utility functions and data processing
118
- │ ├── messages.py # WebSocket message formats and protocols
119
- │ ├── parsing.py # Market data parsing and validation
120
- │ ├── dashboard.py # CLI formatting and display logic
121
- │ ├── websocket_manager.py # WebSocket connection management
122
- │ └── __main__.py # CLI entry point
123
- ├── setup.py # Package configuration
124
- ├── requirements.txt # Dependencies
125
- ├── README.md # This file
126
- └── LICENSE # MIT License
127
- ```
128
-
129
73
  ---
130
74
 
131
75
  ## 📊 Market Data Specifications
@@ -144,15 +88,12 @@ nadex/
144
88
  ### Local Development Setup
145
89
  ```bash
146
90
  # Clone the repository
147
- git clone https://github.com/shivamgarg-dev/nadex-dashboard.git
91
+ git clone https://github.com/shivamgarg001/Nadex.git
148
92
  cd nadex-dashboard
149
93
 
150
94
  # Install in development mode
151
95
  pip install -e .
152
96
 
153
- # Run tests
154
- python -m pytest tests/
155
-
156
97
  # Run the CLI
157
98
  nadex_dashboard
158
99
  ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nadex-cli
3
- Version: 1.0.2
3
+ Version: 2.0.0
4
4
  Keywords: nadex ,nadex-binary-options ,nadex-forex ,nadex-real-time ,nadex-market-data ,nadex-cli ,nadex-dashboard ,nadex-websocket ,nadex-trading ,nadex-finance ,nadex-python ,nadex-pip-install ,nadex-automation ,nadex-order-book,binary-options ,forex ,real-time ,market-data ,cli ,dashboard ,websocket ,trading ,finance ,python ,pip-install ,automation ,order-book,nadex pypi ,pypi nadex ,pip nadex ,pip i nadex-cli ,pypi nadex-cli ,pip nadex
5
5
  Description-Content-Type: text/markdown
6
6
  License-File: LICENSE
@@ -85,62 +85,6 @@ The package comes with **built-in test credentials** that connect to Nadex's dem
85
85
  - ✅ Perfect for learning and development
86
86
  - ✅ No registration required
87
87
 
88
- ### Using Your Own Credentials
89
-
90
- If you have a Nadex account and want to use your own credentials:
91
-
92
- #### Method 1: Environment Variables
93
- ```bash
94
- export NADEX_USERNAME=your-username
95
- export NADEX_PASSWORD=your-password
96
- nadex_dashboard
97
- ```
98
-
99
- #### Method 2: .env File
100
- Create a `.env` file in your working directory:
101
- ```env
102
- NADEX_USERNAME=your-username
103
- NADEX_PASSWORD=your-password
104
- ```
105
-
106
- Then run the command as usual:
107
- ```bash
108
- nadex_dashboard
109
- ```
110
-
111
- #### Method 3: Direct Configuration
112
- ```python
113
- # Custom script using the package
114
- from nadex_dashboard import NadexClient
115
-
116
- client = NadexClient(
117
- username="your-username",
118
- password="your-password"
119
- )
120
- client.start_dashboard()
121
- ```
122
-
123
- ---
124
-
125
- ## 🏗️ Architecture & Project Structure
126
-
127
- ```
128
- nadex/
129
- ├── nadex_dashboard/
130
- │ ├── __init__.py # Package initialization
131
- │ ├── config.py # Configuration and environment handling
132
- │ ├── helpers.py # Utility functions and data processing
133
- │ ├── messages.py # WebSocket message formats and protocols
134
- │ ├── parsing.py # Market data parsing and validation
135
- │ ├── dashboard.py # CLI formatting and display logic
136
- │ ├── websocket_manager.py # WebSocket connection management
137
- │ └── __main__.py # CLI entry point
138
- ├── setup.py # Package configuration
139
- ├── requirements.txt # Dependencies
140
- ├── README.md # This file
141
- └── LICENSE # MIT License
142
- ```
143
-
144
88
  ---
145
89
 
146
90
  ## 📊 Market Data Specifications
@@ -159,15 +103,12 @@ nadex/
159
103
  ### Local Development Setup
160
104
  ```bash
161
105
  # Clone the repository
162
- git clone https://github.com/shivamgarg-dev/nadex-dashboard.git
106
+ git clone https://github.com/shivamgarg001/Nadex.git
163
107
  cd nadex-dashboard
164
108
 
165
109
  # Install in development mode
166
110
  pip install -e .
167
111
 
168
- # Run tests
169
- python -m pytest tests/
170
-
171
112
  # Run the CLI
172
113
  nadex_dashboard
173
114
  ```
@@ -5,7 +5,7 @@ with open("README.md", "r") as f:
5
5
 
6
6
  setup(
7
7
  name='nadex-cli',
8
- version='1.0.2',
8
+ version='2.0.0',
9
9
  packages=find_packages(),
10
10
  include_package_data=True,
11
11
  install_requires=[
File without changes
File without changes
File without changes
File without changes