mc5-api-client 1.0.1__py3-none-any.whl → 1.0.2__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mc5-api-client
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: A comprehensive Python library for interacting with the Modern Combat 5 API
5
5
  Home-page: https://pypi.org/project/mc5-api-client/
6
6
  Author: Chizoba
@@ -104,12 +104,14 @@ Think of this as your remote control for Modern Combat 5! Here's what you can do
104
104
 
105
105
  ## � Installation & Publishing
106
106
 
107
- ### 🚀 Install from PyPI (Once Published)
107
+ ### 🚀 Install from PyPI
108
108
 
109
109
  ```bash
110
- pip install mc5-api-client
110
+ pip install mc5_api_client
111
111
  ```
112
112
 
113
+ ✅ **Published and Available!** The MC5 API Client is now live on PyPI and ready for worldwide use!
114
+
113
115
  ### 📦 Install from Local Package
114
116
 
115
117
  ```bash
@@ -121,25 +123,20 @@ cd mc5-api-client-1.0.0
121
123
  pip install .
122
124
  ```
123
125
 
124
- ### 📤 Publishing to PyPI
125
-
126
- The package has been successfully built! You now have:
126
+ ### 📤 Publishing Status
127
127
 
128
- **Source Distribution**: `dist/mc5-api-client-1.0.0.tar.gz`
129
- ✅ **Wheel Distribution**: `dist/mc5_api_client-1.0.0-py3-none-any.whl`
128
+ 🎉 **Successfully Published!** The package is now available on PyPI:
130
129
 
131
- To publish to PyPI:
130
+ **Package Name**: `mc5_api_client`
131
+ ✅ **Version**: `1.0.1`
132
+ ✅ **PyPI URL**: https://pypi.org/project/mc5_api_client/
133
+ ✅ **Installation**: `pip install mc5_api_client`
134
+ ✅ **CLI Command**: `mc5 --help`
132
135
 
133
- ```bash
134
- # Install twine if you haven't already
135
- pip install twine
136
+ ### 📦 Package Files
136
137
 
137
- # Upload to PyPI (you'll need your PyPI credentials)
138
- twine upload dist/*
139
-
140
- # Or upload to Test PyPI first
141
- twine upload --repository testpypi dist/*
142
- ```
138
+ **Source Distribution**: `dist/mc5_api_client-1.0.1.tar.gz`
139
+ **Wheel Distribution**: `dist/mc5_api_client-1.0.1-py3-none-any.whl`
143
140
 
144
141
  ### 🔧 Build Status
145
142
 
@@ -149,14 +146,14 @@ twine upload --repository testpypi dist/*
149
146
  ✅ **CLI Entry Points** - `mc5` command available
150
147
  ✅ **Dependencies Managed** - All requirements included
151
148
 
152
- ## �🚀 Let's Get Started!
149
+ ## �� Let's Get Started!
153
150
 
154
151
  ### Step 1: Install the Library
155
152
 
156
153
  Just run this in your terminal (Command Prompt/PowerShell):
157
154
 
158
155
  ```bash
159
- pip install mc5-api-client
156
+ pip install mc5_api_client
160
157
  ```
161
158
 
162
159
  That's it! 🎉 You're ready to go!
@@ -170,8 +167,8 @@ from mc5_api_client import MC5Client
170
167
 
171
168
  # Create a client and login
172
169
  client = MC5Client(
173
- username="anonymous:d2luOF92M18xNzcwMDUxNjkwXy7H33aeTVB4YZictyDq48c=",
174
- password="sSJKzhQ5l4vrFgov"
170
+ username="YOUR_USERNAME_HERE",
171
+ password="YOUR_PASSWORD_HERE"
175
172
  )
176
173
 
177
174
  # Check your profile
@@ -747,8 +744,8 @@ from mc5_api_client import MC5Client
747
744
 
748
745
  def squad_management_bot():
749
746
  client = MC5Client(
750
- username="anonymous:d2luOF92M18xNzcwMDUxNjkwXy7H33aeTVB4YZictyDq48c=",
751
- password="sSJKzhQ5l4vrFgov"
747
+ username="YOUR_USERNAME_HERE",
748
+ password="YOUR_PASSWORD_HERE"
752
749
  )
753
750
 
754
751
  group_id = "your-group-id"
@@ -794,8 +791,8 @@ from mc5_api_client import MC5Client
794
791
 
795
792
  def private_messaging_bot():
796
793
  client = MC5Client(
797
- username="anonymous:d2luOF92M18xNzcwMDUxNjkwXy7H33aeTVB4YZictyDq48c=",
798
- password="sSJKzhQ5l4vrFgov"
794
+ username="YOUR_USERNAME_HERE",
795
+ password="YOUR_PASSWORD_HERE"
799
796
  )
800
797
 
801
798
  # Check inbox for new messages
@@ -843,8 +840,8 @@ from datetime import datetime
843
840
 
844
841
  def track_squad_performance():
845
842
  client = MC5Client(
846
- username="anonymous:d2luOF92M18xNzcwMDUxNjkwXy7H33aeTVB4YZictyDq48c=",
847
- password="sSJKzhQ5l4vrFgov"
843
+ username="YOUR_USERNAME_HERE",
844
+ password="YOUR_PASSWORD_HERE"
848
845
  )
849
846
 
850
847
  group_id = "your-group-id"
@@ -879,8 +876,8 @@ Celebrate squad achievements automatically:
879
876
  ```python
880
877
  def celebrate_achievements():
881
878
  client = MC5Client(
882
- username="anonymous:d2luOF92M18xNzcwMDUxNjkwXy7H33aeTVB4YZictyDq48c=",
883
- password="sSJKzhQ5l4vrFgov"
879
+ username="YOUR_USERNAME_HERE",
880
+ password="YOUR_PASSWORD_HERE"
884
881
  )
885
882
 
886
883
  group_id = "your-group-id"
@@ -917,8 +914,8 @@ Create a custom leaderboard system:
917
914
  ```python
918
915
  def create_custom_leaderboard():
919
916
  client = MC5Client(
920
- username="anonymous:d2luOF92M18xNzcwMDUxNjkwXy7H33aeTVB4YZictyDq48c=",
921
- password="sSJKzhQ5l4vrFgov"
917
+ username="YOUR_USERNAME_HERE",
918
+ password="YOUR_PASSWORD_HERE"
922
919
  )
923
920
 
924
921
  group_id = "your-group-id"
@@ -1075,7 +1072,7 @@ Want to contribute or modify the library?
1075
1072
 
1076
1073
  ```bash
1077
1074
  # Clone the project
1078
- git clone https://github.com/your-repo/mc5-api-client
1075
+ git clone https://github.com/chizoba2026/mc5-api-client
1079
1076
  cd mc5-api-client
1080
1077
 
1081
1078
  # Install for development
@@ -1146,5 +1143,5 @@ This is the **most comprehensive Modern Combat 5 API library** ever created! Wit
1146
1143
  **Ready to dominate Modern Combat 5?** 🚀
1147
1144
 
1148
1145
  ```bash
1149
- pip install mc5-api-client
1146
+ pip install mc5_api_client
1150
1147
  mc5 --help # See all commands!
@@ -4,9 +4,9 @@ mc5_api_client/cli.py,sha256=KegNTxwq28gu_vrffc_cXcALrHzUBDHd-5DqKyYp4p0,17284
4
4
  mc5_api_client/client.py,sha256=gJ1NSe3pJIb-9d6bgEjkcoxGgfQhuYnd462MXnk2GzI,40015
5
5
  mc5_api_client/exceptions.py,sha256=o7od4GrEIlgq6xSNUjZdh74xoDTytF3PLcMq5ewRiJw,2683
6
6
  mc5_api_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- mc5_api_client-1.0.1.dist-info/LICENSE,sha256=M0UBQ4B3pB9XcV54_jhVP681xyauF8GB6YK_rKmuXzk,1064
8
- mc5_api_client-1.0.1.dist-info/METADATA,sha256=_m6OmjftnaKVLR-5aUNtNpUNA5_7uwTJpfrX1WiHy3E,34108
9
- mc5_api_client-1.0.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
10
- mc5_api_client-1.0.1.dist-info/entry_points.txt,sha256=2kruOpleFYK3Jl1MoQwGyqCd-Pj4kQWngXmIjnXx_gE,48
11
- mc5_api_client-1.0.1.dist-info/top_level.txt,sha256=eYJe4ue9j1ig_jFY5Z05mDqpizUEV7TYpk5lBXVd4kA,15
12
- mc5_api_client-1.0.1.dist-info/RECORD,,
7
+ mc5_api_client-1.0.2.dist-info/LICENSE,sha256=M0UBQ4B3pB9XcV54_jhVP681xyauF8GB6YK_rKmuXzk,1064
8
+ mc5_api_client-1.0.2.dist-info/METADATA,sha256=t0sm82BnYPPWgjWg84mS9GWXWoVXiBpqFc45yYNcYS0,33982
9
+ mc5_api_client-1.0.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
10
+ mc5_api_client-1.0.2.dist-info/entry_points.txt,sha256=2kruOpleFYK3Jl1MoQwGyqCd-Pj4kQWngXmIjnXx_gE,48
11
+ mc5_api_client-1.0.2.dist-info/top_level.txt,sha256=eYJe4ue9j1ig_jFY5Z05mDqpizUEV7TYpk5lBXVd4kA,15
12
+ mc5_api_client-1.0.2.dist-info/RECORD,,