Name | endstone-ip-tracker JSON |
Version |
0.1.0
JSON |
| download |
home_page | None |
Summary | Python IP tracker plugin for Endstone servers |
upload_time | 2025-07-11 02:00:34 |
maintainer | None |
docs_url | None |
author | None |
requires_python | None |
license | MIT License
Copyright (c) 2025 Tsingloong
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
endstone
ip
plugin
tracker
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Endstone IP Tracker Plugin
[](https://www.python.org/downloads/) [](https://github.com/EndstoneMC/endstone) [](https://claude.ai/chat/LICENSE)
A comprehensive IP tracking plugin for Endstone Minecraft servers that automatically records and manages player IP addresses with detailed history tracking.
## 🚀 Features
- **🔍 Automatic IP Tracking**: Records player IP addresses when they join the server
- **📊 Join Statistics**: Tracks player join count and timestamps
- **🕐 IP History**: Maintains complete history of IP address changes
- **📋 Query Commands**: Easy-to-use commands for checking player information
- **💾 Data Persistence**: Automatic data saving and loading with JSON storage
- **🔒 Permission System**: Configurable permissions for different user roles
- **🌐 Multi-IP Support**: Tracks IP changes when players connect from different networks
## 📦 Installation
### Option 1: Install from Release (Recommended)
Download .whl file from Release Page, then put this file into Plugin folder
### Option 2: Install from PyPI
```bash
pip install endstone-ip-tracker
```
### Option 3: Install from Source
```bash
git clone https://github.com/Tsingloong611/endstone-ip-tracker.git
cd endstone-ip-tracker
pip install -e .
```
### Option 4: Install from Release
1. Download the latest `.whl` file from [Releases](https://github.com/Tsingloong611/endstone-ip-tracker/releases)
2. Install using pip:
```bash
pip install endstone_ip_tracker-0.1.0-py2.py3-none-any.whl
```
## 🎮 Usage
### Commands
| Command | Description | Usage | Permission |
| ---------- | --------------------------- | ------------------- | ----------------- |
| `/checkip` | Check player IP information | `/checkip <player>` | `iptracker.check` |
| `/iplist` | List all recorded players | `/iplist` | `iptracker.list` |
### Example Usage


```bash
# Check a specific player's IP
/checkip Tsingloong1219
# List all players with their current IPs
/iplist
```
## 🔐 Permissions
| Permission | Description | Default |
| ----------------- | -------------------------- | ------- |
| `iptracker.admin` | All IP tracker permissions | `op` |
| `iptracker.check` | Use /checkip command | `op` |
| `iptracker.list` | Use /iplist command | `op` |
## 📊 Data Structure
The plugin stores data in `plugins/IPTrackerPlugin/player_ips.json`:
```json
{
"Tsingloong1219": {
"current_ip": "192.168.50.40",
"first_join": "2025-07-10 18:10:34",
"last_join": "2025-07-10 18:14:50",
"join_count": 3,
"ip_history": [
{
"ip": "192.168.50.39",
"time": "2025-07-10 18:10:34"
},
{
"ip": "192.168.50.40",
"time": "2025-07-10 18:14:50"
}
]
}
}
```
## 🛠️ Configuration
The plugin works out of the box with no configuration required. However, you can customize:
- **Data Storage Location**: Modify `self.data_folder` in the plugin code
- **Display Limits**: Change the number of history entries shown in commands
- **Permissions**: Adjust permission requirements in your server configuration
## 🔧 Requirements
- **Endstone**: >= 0.6.0
- **Python**: >= 3.9
- **Operating System**: Windows, Linux, macOS
## 📝 Changelog
### v0.1.0 (2025-07-10)
- Initial release
- Basic IP tracking functionality
- Command system implementation
- Data persistence
- Permission system
- Multi-language support preparation
## 🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
## 📄 License
This project is licensed under the MIT License - see the [LICENSE](https://claude.ai/chat/LICENSE) file for details.
## 🆘 Support
If you encounter any issues or have questions:
1. Check the [Issues](https://github.com/Tsingloong611/endstone-ip-tracker/issues) page
2. Create a new issue if your problem isn't already reported
3. Provide detailed information about your setup and the issue
## 🙏 Acknowledgments
- Thanks to the Endstone team for creating an excellent Minecraft server platform
- Inspired by the need for better player management tools in Minecraft servers
## 📈 Statistics
- **Players Tracked**: Unlimited
- **IP History**: Complete history maintained
- **Performance**: Minimal server impact
- **Compatibility**: Works with all Endstone-compatible setups
------
Made with ❤️ for the Minecraft community
Raw data
{
"_id": null,
"home_page": null,
"name": "endstone-ip-tracker",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "endstone, ip, plugin, tracker",
"author": null,
"author_email": "Tsing_loong <tsingloong611@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/bd/62/eb2da611e3bdd92f48a04270e8422dd1039d67f2ae4a25bc1e5f1a6c01ba/endstone_ip_tracker-0.1.0.tar.gz",
"platform": null,
"description": "# Endstone IP Tracker Plugin\n\n[](https://www.python.org/downloads/) [](https://github.com/EndstoneMC/endstone) [](https://claude.ai/chat/LICENSE)\n\nA comprehensive IP tracking plugin for Endstone Minecraft servers that automatically records and manages player IP addresses with detailed history tracking.\n\n## \ud83d\ude80 Features\n\n- **\ud83d\udd0d Automatic IP Tracking**: Records player IP addresses when they join the server\n- **\ud83d\udcca Join Statistics**: Tracks player join count and timestamps\n- **\ud83d\udd50 IP History**: Maintains complete history of IP address changes\n- **\ud83d\udccb Query Commands**: Easy-to-use commands for checking player information\n- **\ud83d\udcbe Data Persistence**: Automatic data saving and loading with JSON storage\n- **\ud83d\udd12 Permission System**: Configurable permissions for different user roles\n- **\ud83c\udf10 Multi-IP Support**: Tracks IP changes when players connect from different networks\n\n## \ud83d\udce6 Installation\n### Option 1: Install from Release (Recommended)\n\nDownload .whl file from Release Page, then put this file into Plugin folder\n\n### Option 2: Install from PyPI\n\n```bash\npip install endstone-ip-tracker\n```\n\n### Option 3: Install from Source\n\n```bash\ngit clone https://github.com/Tsingloong611/endstone-ip-tracker.git\ncd endstone-ip-tracker\npip install -e .\n```\n\n### Option 4: Install from Release\n\n1. Download the latest `.whl` file from [Releases](https://github.com/Tsingloong611/endstone-ip-tracker/releases)\n2. Install using pip:\n\n```bash\npip install endstone_ip_tracker-0.1.0-py2.py3-none-any.whl\n```\n\n## \ud83c\udfae Usage\n\n### Commands\n\n| Command | Description | Usage | Permission |\n| ---------- | --------------------------- | ------------------- | ----------------- |\n| `/checkip` | Check player IP information | `/checkip <player>` | `iptracker.check` |\n| `/iplist` | List all recorded players | `/iplist` | `iptracker.list` |\n### Example Usage\n\n\n\n\n\n```bash\n# Check a specific player's IP\n/checkip Tsingloong1219\n\n# List all players with their current IPs\n/iplist\n```\n\n## \ud83d\udd10 Permissions\n\n| Permission | Description | Default |\n| ----------------- | -------------------------- | ------- |\n| `iptracker.admin` | All IP tracker permissions | `op` |\n| `iptracker.check` | Use /checkip command | `op` |\n| `iptracker.list` | Use /iplist command | `op` |\n\n## \ud83d\udcca Data Structure\n\nThe plugin stores data in `plugins/IPTrackerPlugin/player_ips.json`:\n\n```json\n{\n \"Tsingloong1219\": {\n \"current_ip\": \"192.168.50.40\",\n \"first_join\": \"2025-07-10 18:10:34\",\n \"last_join\": \"2025-07-10 18:14:50\",\n \"join_count\": 3,\n \"ip_history\": [\n {\n \"ip\": \"192.168.50.39\",\n \"time\": \"2025-07-10 18:10:34\"\n },\n {\n \"ip\": \"192.168.50.40\",\n \"time\": \"2025-07-10 18:14:50\"\n }\n ]\n }\n}\n```\n\n## \ud83d\udee0\ufe0f Configuration\n\nThe plugin works out of the box with no configuration required. However, you can customize:\n\n- **Data Storage Location**: Modify `self.data_folder` in the plugin code\n- **Display Limits**: Change the number of history entries shown in commands\n- **Permissions**: Adjust permission requirements in your server configuration\n\n## \ud83d\udd27 Requirements\n\n- **Endstone**: >= 0.6.0\n- **Python**: >= 3.9\n- **Operating System**: Windows, Linux, macOS\n\n## \ud83d\udcdd Changelog\n\n### v0.1.0 (2025-07-10)\n\n- Initial release\n- Basic IP tracking functionality\n- Command system implementation\n- Data persistence\n- Permission system\n- Multi-language support preparation\n\n## \ud83e\udd1d Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the MIT License - see the [LICENSE](https://claude.ai/chat/LICENSE) file for details.\n\n## \ud83c\udd98 Support\n\nIf you encounter any issues or have questions:\n\n1. Check the [Issues](https://github.com/Tsingloong611/endstone-ip-tracker/issues) page\n2. Create a new issue if your problem isn't already reported\n3. Provide detailed information about your setup and the issue\n\n## \ud83d\ude4f Acknowledgments\n\n- Thanks to the Endstone team for creating an excellent Minecraft server platform\n- Inspired by the need for better player management tools in Minecraft servers\n\n## \ud83d\udcc8 Statistics\n\n- **Players Tracked**: Unlimited\n- **IP History**: Complete history maintained\n- **Performance**: Minimal server impact\n- **Compatibility**: Works with all Endstone-compatible setups\n\n------\n\nMade with \u2764\ufe0f for the Minecraft community\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 Tsingloong\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "Python IP tracker plugin for Endstone servers",
"version": "0.1.0",
"project_urls": {
"Homepage": "https://github.com/your-username/endstone-ip-tracker"
},
"split_keywords": [
"endstone",
" ip",
" plugin",
" tracker"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "914c80226c983ed3e296ecc655c0784a82a6de90a9eb3aa7a6e9371cc6528f77",
"md5": "822d967ce235b1693fe6a83d8debecf5",
"sha256": "074c38ea95b1e478cc0820529eaf3f4cdfa90bf4cc3ef039480d7ddafef5d48c"
},
"downloads": -1,
"filename": "endstone_ip_tracker-0.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "822d967ce235b1693fe6a83d8debecf5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 7628,
"upload_time": "2025-07-11T02:00:32",
"upload_time_iso_8601": "2025-07-11T02:00:32.564027Z",
"url": "https://files.pythonhosted.org/packages/91/4c/80226c983ed3e296ecc655c0784a82a6de90a9eb3aa7a6e9371cc6528f77/endstone_ip_tracker-0.1.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd62eb2da611e3bdd92f48a04270e8422dd1039d67f2ae4a25bc1e5f1a6c01ba",
"md5": "c189b1e9c48638c8cd990ccd2b6d2fb2",
"sha256": "a7e98c0058c032262ec7e61a72b461522260bcce23ed9c0c5a9de7b546bc7d4d"
},
"downloads": -1,
"filename": "endstone_ip_tracker-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "c189b1e9c48638c8cd990ccd2b6d2fb2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 405298,
"upload_time": "2025-07-11T02:00:34",
"upload_time_iso_8601": "2025-07-11T02:00:34.607759Z",
"url": "https://files.pythonhosted.org/packages/bd/62/eb2da611e3bdd92f48a04270e8422dd1039d67f2ae4a25bc1e5f1a6c01ba/endstone_ip_tracker-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-11 02:00:34",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "your-username",
"github_project": "endstone-ip-tracker",
"github_not_found": true,
"lcname": "endstone-ip-tracker"
}