Advanced Multi-Market Trading Bot with Crypto & Forex Support
Project description
๐ค GeneBot - Advanced Multi-Market Trading Bot
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ
โ โโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ โโโโโโโ โโโโโโโโโโ
โ โโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โโโ โโโโโโโโโโ โโโโโโ โโโโโโโโโ โโโโโโโโโโโ โโโ โโโ โ
โ โโโ โโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโ โโโ โโโ โ
โ โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโ โ
โ โโโโโโโ โโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ โโโโโโโ โโโ โ
โ โ
โ Advanced Multi-Market Trading Bot โ
โ Version 1.1.20 โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
GeneBot is a sophisticated, multi-market trading bot that supports both cryptocurrency exchanges and forex brokers. Built with advanced risk management, comprehensive strategy orchestration, and real-time monitoring capabilities.
๐ What's New in v1.1.20
๐ฏ Complete CLI Refactoring & Enhancement
- ๐๏ธ Modular CLI Architecture: Completely refactored CLI from monolithic to modular design
- ๐ Real Data Integration: Replaced all mock data with live API connectivity and database integration
- ๐ง Enhanced Error Handling: Comprehensive error messages with actionable troubleshooting suggestions
- โก Improved Performance: Sub-5 second response times with optimized resource usage
- ๐ Security Enhancements: Secure credential handling and audit logging for sensitive operations
๐ New CLI Features
- ๐ค Advanced Bot Management: Real process lifecycle management with PID tracking and health monitoring
- ๐ Live Monitoring: Real-time trading activity display with comprehensive status reporting
- ๐ System Diagnostics: Built-in health checks and system validation tools
- ๐พ Configuration Management: Safe file operations with backup/rollback capabilities
- ๐ Enhanced Reporting: Comprehensive trading reports with multiple output formats
โ Deployment Validation
- 100% Test Success Rate: All 23 validation tests passed
- ๐ Backward Compatibility: Existing workflows continue to work seamlessly
- ๐ Comprehensive Documentation: Complete CLI deployment guide and migration instructions
- ๐ก๏ธ Production Ready: Thoroughly tested and validated for production deployment
๐ Key Features
๐ Multi-Market Trading
- Crypto Exchanges: Binance, Coinbase, Kraken, KuCoin, Bybit
- Forex Brokers: OANDA, MetaTrader 5, Interactive Brokers
- Cross-Market Arbitrage: Exploit price differences across markets
- Unified Portfolio Management: Manage positions across all markets
๐ง Advanced Strategy Engine
- 50+ Built-in Strategies: Technical indicators, ML patterns, arbitrage
- Custom Strategy Development: Easy-to-use strategy framework
- Multi-Strategy Orchestration: Run multiple strategies simultaneously
- Strategy Performance Analytics: Comprehensive backtesting and analysis
๐ก๏ธ Comprehensive Risk Management
- Real-Time Risk Monitoring: Position sizing, drawdown protection
- Cross-Market Risk Assessment: Correlation analysis and exposure limits
- Anti-Greed System: Prevents emotional trading decisions
- Dynamic Stop-Loss Management: Adaptive risk controls
๐ Enterprise-Grade Security
- Live API Validation: Comprehensive credential testing before trading
- Secure Configuration Management: Encrypted credential storage
- Audit Trails: Complete trading history and compliance reporting
- Regulatory Compliance: Built-in compliance frameworks
๐ Advanced Analytics & Monitoring
- Real-Time Dashboards: Grafana integration with custom metrics
- Performance Analytics: Detailed P&L analysis and reporting
- Alert System: Email, SMS, and webhook notifications
- Backtesting Engine: Historical strategy validation
๐ ๏ธ Installation
Quick Install from PyPI (Recommended)
# Install GeneBot from PyPI
pip install genebot
# Verify installation
genebot --version
genebot --help
Development Installation
# Clone the repository
git clone https://github.com/genebot/genebot.git
cd genebot
# Create virtual environment
python3 -m venv genebot-env
source genebot-env/bin/activate
# Install in development mode
pip install -e .
# Install optional features
pip install -e ".[all]" # All features
pip install -e ".[dev]" # Development tools
pip install -e ".[monitoring]" # Monitoring tools
pip install -e ".[ml]" # Machine Learning tools
๐ Quick Start
1. Initialize Your Workspace
# Initialize GeneBot configuration files and directories
genebot init-config
This command creates the following structure:
โโโ .env # API credentials and environment settings
โโโ config/
โ โโโ accounts.yaml # Trading account configurations
โ โโโ trading_bot_config.yaml # Trading strategies and settings
โโโ logs/ # Trading logs and system logs
โโโ reports/ # Performance and trading reports
โโโ backups/ # Configuration backups
2. Configure Environment Settings
Edit the .env file created by init-config:
# Open the environment file
nano .env
Environment Configuration Options:
# Trading Mode
ENVIRONMENT=development # development, staging, production
PAPER_TRADING=true # true for demo trading, false for live
# Risk Management
MAX_DAILY_LOSS=1000 # Maximum daily loss in USD
MAX_PORTFOLIO_RISK=0.02 # Maximum risk per trade (2%)
PORTFOLIO_VALUE=100000 # Total portfolio value
# Crypto Exchange API (Example: Binance)
BINANCE_API_KEY=your_api_key_here
BINANCE_API_SECRET=your_secret_here
BINANCE_SANDBOX=true # Use sandbox/testnet
# Forex Broker API (Example: OANDA)
OANDA_API_KEY=your_api_key_here
OANDA_ACCOUNT_ID=your_account_id_here
OANDA_SANDBOX=true # Use demo environment
# Notification Settings (Optional)
TELEGRAM_BOT_TOKEN=your_telegram_bot_token
TELEGRAM_CHAT_ID=your_chat_id
EMAIL_NOTIFICATIONS=false
3. Set Up Demo Accounts (Safe Testing)
# Set up demo accounts for testing
genebot setup-demo
# List available exchanges and brokers
genebot list-exchanges
genebot list-brokers
# Validate demo accounts
genebot validate
4. Add Your Trading Accounts
Option A: Interactive Account Setup
# Add crypto exchange account (interactive prompts)
genebot add-crypto binance --mode demo
# Add forex broker account (interactive prompts)
genebot add-forex oanda --mode demo
# List all configured accounts
genebot list
Option B: Manual Configuration
Edit config/accounts.yaml:
crypto_exchanges:
binance-demo:
name: 'Binance Demo Account'
exchange_type: 'binance'
api_key: '${BINANCE_API_KEY}'
api_secret: '${BINANCE_API_SECRET}'
sandbox: true
enabled: true
max_position_size: 1000
risk_limit: 0.02
forex_brokers:
oanda-demo:
name: 'OANDA Demo Account'
broker_type: 'oanda'
api_key: '${OANDA_API_KEY}'
account_id: '${OANDA_ACCOUNT_ID}'
sandbox: true
enabled: true
max_position_size: 10000
leverage: 50
5. Validate Configuration
# Validate all accounts and configuration
genebot validate
# Validate specific account
genebot validate-accounts
6. Start Trading
# Start the trading bot with live API validation
genebot start
# Check bot status
genebot status
# Generate trading reports
genebot report
๐ Command Reference
Setup & Configuration
genebot init-config # Initialize workspace and configuration files
genebot config-help # Show detailed configuration guide
genebot validate # Validate all accounts and configuration
genebot backup-config # Backup current configurations
Account Management
# List available options
genebot list-exchanges # List supported crypto exchanges
genebot list-brokers # List supported forex brokers
genebot list # List all configured accounts
# Add accounts
genebot add-crypto <exchange> # Add crypto exchange account
genebot add-forex <broker> # Add forex broker account
# Examples:
genebot add-crypto binance --mode demo
genebot add-forex oanda --mode demo
# Edit accounts
genebot edit-crypto <name> # Edit crypto account
genebot edit-forex <name> # Edit forex account
# Remove accounts
genebot remove-account <name> # Remove specific account
genebot remove-all-accounts # Remove all accounts
genebot remove-by-exchange <ex> # Remove by exchange type
genebot remove-by-type <type> # Remove by account type (crypto/forex)
# Account status
genebot enable-account <name> # Enable specific account
genebot disable-account <name> # Disable specific account
genebot validate-accounts # Validate all account credentials
Bot Control
genebot start # Start trading bot
genebot stop # Stop trading bot
genebot restart # Restart trading bot
genebot status # Show detailed bot status
genebot health-check # Comprehensive system health check
Demo & Testing
genebot setup-demo # Setup demo accounts for safe testing
genebot cleanup-demo # Remove all demo accounts
Reporting & Analytics
genebot report # Generate comprehensive trading report
Utilities
genebot reset # Clean up all data and reset system
genebot --version # Show version information
genebot --help # Show help and available commands
๐ง Configuration
Environment Configuration (.env)
The .env file controls GeneBot's runtime behavior and security settings:
Environment Modes
# ENVIRONMENT controls the trading mode
ENVIRONMENT=development # Options: development, staging, production
# Development Mode:
# - Enhanced logging and debugging
# - Additional safety checks
# - Recommended for testing and learning
# Staging Mode:
# - Production-like environment
# - Used for final testing before live trading
# Production Mode:
# - Optimized for live trading
# - Minimal logging overhead
# - Maximum performance
Paper Trading vs Live Trading
# PAPER_TRADING controls whether to use real money
PAPER_TRADING=true # true = demo/sandbox, false = live trading
# Always start with PAPER_TRADING=true for safety!
# Only set to false when you're confident in your setup
Risk Management Settings
# Global risk limits (applied across all accounts)
MAX_DAILY_LOSS=1000 # Stop trading if daily loss exceeds this
MAX_PORTFOLIO_RISK=0.02 # Maximum risk per trade (2% of portfolio)
PORTFOLIO_VALUE=100000 # Total portfolio value for risk calculations
# Position sizing
MAX_POSITION_SIZE=0.1 # Maximum position size (10% of portfolio)
MAX_OPEN_POSITIONS=5 # Maximum number of concurrent positions
API Credentials
# Crypto Exchange APIs
BINANCE_API_KEY=your_binance_api_key
BINANCE_API_SECRET=your_binance_secret
BINANCE_SANDBOX=true # Use testnet for safety
COINBASE_API_KEY=your_coinbase_key
COINBASE_API_SECRET=your_coinbase_secret
COINBASE_SANDBOX=true
# Forex Broker APIs
OANDA_API_KEY=your_oanda_key
OANDA_ACCOUNT_ID=your_account_id
OANDA_SANDBOX=true # Use demo environment
# Interactive Brokers
IB_HOST=127.0.0.1
IB_PORT=7497 # 7497 for paper trading, 7496 for live
IB_CLIENT_ID=1
Account Configuration (config/accounts.yaml)
Define your trading accounts with specific settings:
crypto_exchanges:
binance-main:
name: 'Binance Main Account'
exchange_type: 'binance'
api_key: '${BINANCE_API_KEY}'
api_secret: '${BINANCE_API_SECRET}'
sandbox: true # Use sandbox/testnet
enabled: true # Enable/disable this account
max_position_size: 1000 # Max position size in USD
risk_limit: 0.02 # Risk per trade (2%)
trading_pairs: ['BTC/USDT', 'ETH/USDT', 'ADA/USDT']
coinbase-demo:
name: 'Coinbase Demo'
exchange_type: 'coinbase'
api_key: '${COINBASE_API_KEY}'
api_secret: '${COINBASE_API_SECRET}'
sandbox: true
enabled: false # Disabled for now
max_position_size: 500
risk_limit: 0.01
forex_brokers:
oanda-demo:
name: 'OANDA Demo Account'
broker_type: 'oanda'
api_key: '${OANDA_API_KEY}'
account_id: '${OANDA_ACCOUNT_ID}'
sandbox: true
enabled: true
max_position_size: 10000 # Max position size in account currency
leverage: 50 # Maximum leverage
currency_pairs: ['EUR/USD', 'GBP/USD', 'USD/JPY']
ib-paper:
name: 'Interactive Brokers Paper'
broker_type: 'ib'
host: '${IB_HOST}'
port: 7497 # Paper trading port
client_id: 1
enabled: true
max_position_size: 5000
leverage: 30
Trading Strategy Configuration (config/trading_bot_config.yaml)
Configure your trading strategies and global settings:
# Global Trading Settings
trading:
max_position_size: 0.1 # 10% of portfolio per position
risk_per_trade: 0.02 # 2% risk per trade
max_drawdown: 0.15 # Stop if drawdown exceeds 15%
max_daily_trades: 10 # Limit daily trades
trading_hours:
start: "09:00" # Start trading time (UTC)
end: "17:00" # End trading time (UTC)
timezone: "UTC"
# Risk Management
risk_management:
stop_loss_percentage: 0.02 # 2% stop loss
take_profit_percentage: 0.04 # 4% take profit
trailing_stop: true # Enable trailing stops
max_correlation: 0.7 # Max correlation between positions
# Strategy Configuration
strategies:
- name: "RSI_Mean_Reversion"
enabled: true
markets: ["crypto", "forex"] # Apply to both markets
parameters:
rsi_period: 14
oversold_threshold: 30
overbought_threshold: 70
position_size: 0.05 # 5% of portfolio
- name: "Moving_Average_Crossover"
enabled: true
markets: ["crypto"] # Crypto only
parameters:
fast_ma: 10
slow_ma: 20
position_size: 0.03
- name: "Forex_Session_Strategy"
enabled: false # Disabled
markets: ["forex"]
parameters:
session: "london"
volatility_threshold: 0.5
# Multi-Market Settings
multi_market:
cross_market_arbitrage: true # Enable arbitrage opportunities
correlation_threshold: 0.8 # Correlation limit for risk management
max_exposure_per_market: 0.6 # Max 60% exposure per market type
rebalancing_frequency: "daily" # Portfolio rebalancing
๐ Step-by-Step Tutorials
Tutorial 1: Complete Setup from Scratch
Step 1: Install and Initialize
# Install GeneBot
pip install genebot
# Initialize workspace
genebot init-config
# Check what was created
ls -la
Step 2: Configure Environment
# Edit the .env file
nano .env
# Set basic configuration:
ENVIRONMENT=development
PAPER_TRADING=true
MAX_DAILY_LOSS=500
PORTFOLIO_VALUE=10000
Step 3: Set Up Demo Accounts
# Set up demo accounts automatically
genebot setup-demo
# Verify accounts were created
genebot list
# Validate configuration
genebot validate
Step 4: Start Trading
# Start the bot
genebot start
# Check status in another terminal
genebot status
# View logs
tail -f logs/trading_bot.log
Tutorial 2: Adding Real Exchange Accounts
Step 1: Get API Credentials
- Binance: Go to Binance.com โ Account โ API Management
- OANDA: Go to OANDA โ My Account โ Manage API Access
- Create API keys with appropriate permissions
Step 2: Add Credentials to Environment
# Edit .env file
nano .env
# Add your real API credentials
BINANCE_API_KEY=your_real_binance_key
BINANCE_API_SECRET=your_real_binance_secret
BINANCE_SANDBOX=true # Keep as true for testing
OANDA_API_KEY=your_real_oanda_key
OANDA_ACCOUNT_ID=your_real_account_id
OANDA_SANDBOX=true # Keep as true for testing
Step 3: Add Accounts Using CLI
# Add Binance account (interactive)
genebot add-crypto binance --mode demo
# Follow the prompts:
# - Account name: binance-main
# - Enable account: yes
# - Max position size: 1000
# - Risk limit: 0.02
# Add OANDA account (interactive)
genebot add-forex oanda --mode demo
# Follow the prompts:
# - Account name: oanda-main
# - Enable account: yes
# - Max position size: 5000
# - Leverage: 30
Step 4: Validate and Test
# Validate all accounts
genebot validate-accounts
# List configured accounts
genebot list
# Test with paper trading first
genebot start
Tutorial 3: Custom Strategy Configuration
Step 1: Edit Strategy Configuration
# Edit the trading configuration
nano config/trading_bot_config.yaml
Step 2: Add Custom Strategy
strategies:
- name: "My_Custom_RSI"
enabled: true
markets: ["crypto"]
parameters:
rsi_period: 21 # Custom RSI period
oversold_threshold: 25 # More aggressive oversold
overbought_threshold: 75 # More aggressive overbought
position_size: 0.03 # 3% position size
stop_loss: 0.02 # 2% stop loss
take_profit: 0.06 # 6% take profit
Step 3: Test Strategy
# Validate configuration
genebot validate
# Start with paper trading
PAPER_TRADING=true genebot start
# Monitor performance
genebot status
genebot report
Tutorial 4: Multi-Market Arbitrage Setup
Step 1: Enable Multi-Market Features
# Edit trading configuration
nano config/trading_bot_config.yaml
Step 2: Configure Arbitrage Settings
multi_market:
cross_market_arbitrage: true
correlation_threshold: 0.8
max_exposure_per_market: 0.5
arbitrage_min_profit: 0.005 # Minimum 0.5% profit
strategies:
- name: "Cross_Market_Arbitrage"
enabled: true
markets: ["crypto", "forex"]
parameters:
min_spread: 0.005
max_position_size: 0.1
execution_timeout: 30
Step 3: Add Multiple Exchange Accounts
# Add multiple crypto exchanges
genebot add-crypto binance --mode demo
genebot add-crypto coinbase --mode demo
# Add forex brokers
genebot add-forex oanda --mode demo
genebot add-forex ib --mode demo
# Validate all accounts
genebot validate
Tutorial 5: Production Deployment
Step 1: Switch to Production Mode
# Edit environment for production
nano .env
# Update settings:
ENVIRONMENT=production
PAPER_TRADING=false # CAREFUL: This uses real money!
MAX_DAILY_LOSS=2000 # Increase limits for production
PORTFOLIO_VALUE=50000
Step 2: Enable Real Trading Accounts
# Edit account configuration
nano config/accounts.yaml
# Change sandbox settings:
crypto_exchanges:
binance-main:
sandbox: false # Use real trading
enabled: true
Step 3: Final Validation and Deployment
# Comprehensive validation
genebot validate
genebot health-check
# Backup configuration
genebot backup-config
# Start production trading
genebot start
# Monitor closely
watch -n 5 'genebot status'
Advanced Configuration Tips
1. Environment-Specific Settings
# Use different settings for different environments
# Development
ENVIRONMENT=development
PAPER_TRADING=true
MAX_DAILY_LOSS=100
# Production
ENVIRONMENT=production
PAPER_TRADING=false
MAX_DAILY_LOSS=5000
2. Security Best Practices
# Never commit real API keys to version control
# Use environment variables for sensitive data
# Enable IP whitelisting on exchanges
# Use read-only API keys when possible
# Regularly rotate API keys
3. Testing Configuration
# Always test with demo accounts first
genebot setup-demo
genebot validate
genebot start
# Monitor logs for any issues
tail -f logs/trading_bot.log
4. Monitoring and Maintenance
# Regular health checks
genebot health-check
# Generate reports
genebot report
# Backup configurations
genebot backup-config
# Update strategies based on performance
nano config/trading_bot_config.yaml
๐ Supported Markets & Exchanges
Cryptocurrency Exchanges
| Exchange | Spot Trading | Futures | Sandbox | Status |
|---|---|---|---|---|
| Binance | โ | โ | โ | Active |
| Coinbase | โ | โ | โ | Active |
| Kraken | โ | โ | โ | Active |
| KuCoin | โ | โ | โ | Active |
| Bybit | โ | โ | โ | Active |
Forex Brokers
| Broker | Spot Forex | CFDs | Demo | Status |
|---|---|---|---|---|
| OANDA | โ | โ | โ | Active |
| MetaTrader 5 | โ | โ | โ | Active |
| Interactive Brokers | โ | โ | โ | Active |
๐งช Testing & Development
Run Tests
# Run all tests
pytest
# Run specific test categories
pytest tests/test_strategies.py
pytest tests/test_risk_management.py
pytest tests/test_multi_market.py
# Run with coverage
pytest --cov=genebot
Development Setup
# Install development dependencies
pip install -e ".[dev]"
# Run code formatting
black genebot/
flake8 genebot/
# Type checking
mypy genebot/
๐ Performance & Monitoring
Grafana Dashboards
- Trading Overview: Real-time P&L, positions, and performance
- Risk Monitoring: Drawdown, exposure, and risk metrics
- Multi-Market Analysis: Cross-market correlations and arbitrage
- System Health: Bot status, API health, and system metrics
Prometheus Metrics
- Trading performance metrics
- Risk management indicators
- System health and uptime
- API response times and errors
๐ Security & Compliance
Security Features
- Encrypted Credential Storage: API keys stored securely
- Live API Validation: Real-time credential verification
- Audit Trails: Complete trading history logging
- Access Controls: Role-based permission system
Compliance Support
- Regulatory Reporting: Automated compliance reports
- Trade Surveillance: Real-time monitoring for suspicious activity
- Risk Limits: Configurable risk and exposure limits
- Documentation: Comprehensive audit documentation
๐ค Contributing
We welcome contributions! Please see our Contributing Guide for details.
Development Workflow
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests for new functionality
- Run the test suite
- Submit a pull request
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ง Troubleshooting
Common Issues and Solutions
Issue: "No accounts configured yet"
# Solution: Initialize and set up accounts
genebot init-config
genebot setup-demo
genebot list
Issue: "API credentials invalid"
# Solution: Check your .env file and API keys
nano .env
genebot validate-accounts
Issue: "Permission denied" errors
# Solution: Check API key permissions on exchange
# Ensure keys have trading permissions enabled
# Verify IP whitelisting settings
Issue: Bot won't start
# Solution: Check configuration and logs
genebot validate
genebot health-check
tail -f logs/trading_bot.log
Issue: "Module not found" errors
# Solution: Reinstall GeneBot
pip uninstall genebot
pip install genebot
genebot --version
Getting Help
Check Configuration
# Get configuration help
genebot config-help
# Validate everything
genebot validate
genebot health-check
View Logs
# View real-time logs
tail -f logs/trading_bot.log
# View error logs
tail -f logs/errors.log
# View all logs
ls -la logs/
Reset and Start Over
# If all else fails, reset everything
genebot reset
genebot init-config
genebot setup-demo
๐ Support
Documentation
Community
- GitHub Issues: Report bugs and request features
- Discussions: Community discussions and Q&A
- Discord: Join our Discord server
Professional Support
- Email: support@genebot.ai
- Enterprise Support: enterprise@genebot.ai
โ ๏ธ Disclaimer
IMPORTANT: Trading involves substantial risk of loss and is not suitable for all investors. Past performance is not indicative of future results. GeneBot is provided for educational and research purposes. Always test strategies thoroughly in demo environments before live trading.
USE AT YOUR OWN RISK: The developers of GeneBot are not responsible for any financial losses incurred through the use of this software.
๐ฏ Roadmap
Version 1.1 (Q2 2024)
- Advanced ML strategies
- Social trading features
- Mobile app companion
- Enhanced backtesting
Version 1.2 (Q3 2024)
- Options trading support
- Advanced portfolio optimization
- Institutional features
- API marketplace
Made with โค๏ธ by the GeneBot Team
Empowering traders with advanced automation and intelligence.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file genebot-1.1.21.tar.gz.
File metadata
- Download URL: genebot-1.1.21.tar.gz
- Upload date:
- Size: 928.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94fd98f21167da45c8ad22ddde8c745b24df0eb06676d891dda59978eb372c55
|
|
| MD5 |
b0eb0b6040899a995d7219e26469ae02
|
|
| BLAKE2b-256 |
d0cea6dc16fd6b8e82e9e1f23785d00e92550eb0e8df5a3703d9bab1d0693519
|
File details
Details for the file genebot-1.1.21-py3-none-any.whl.
File metadata
- Download URL: genebot-1.1.21-py3-none-any.whl
- Upload date:
- Size: 402.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e09e4b14c41357d4ef84599b8a572bbf72b0a777cd0f3782b36fff84e33968a
|
|
| MD5 |
029659fb43473902a2c54220bada0532
|
|
| BLAKE2b-256 |
b731886f89e8c8761853114ec2b3d557be239324d746a255bc5bc80532a899cf
|