Initial commit
Dieser Commit ist enthalten in:
188
CLAUDE_PROJECT_README.md
Normale Datei
188
CLAUDE_PROJECT_README.md
Normale Datei
@ -0,0 +1,188 @@
|
||||
# test-main
|
||||
|
||||
*This README was automatically generated by Claude Project Manager*
|
||||
|
||||
## Project Overview
|
||||
|
||||
- **Path**: `C:/Users/hendr/Desktop/IntelSight/test-main`
|
||||
- **Files**: 125 files
|
||||
- **Size**: 884.4 KB
|
||||
- **Last Modified**: 2025-07-01 22:08
|
||||
|
||||
## Technology Stack
|
||||
|
||||
### Languages
|
||||
- Python
|
||||
|
||||
## Project Structure
|
||||
|
||||
```
|
||||
CLAUDE_PROJECT_README.md
|
||||
main.py
|
||||
README.md
|
||||
requirements.txt
|
||||
browser/
|
||||
│ ├── fingerprint_protection.py
|
||||
│ ├── playwright_extensions.py
|
||||
│ ├── playwright_manager.py
|
||||
│ ├── stealth_config.py
|
||||
│ └── __init__.py
|
||||
config/
|
||||
│ ├── app_version.json
|
||||
│ ├── browser_config.json
|
||||
│ ├── email_config.json
|
||||
│ ├── facebook_config.json
|
||||
│ ├── instagram_config.json
|
||||
│ ├── license.json
|
||||
│ ├── license_config.json
|
||||
│ ├── proxy_config.json
|
||||
│ └── stealth_config.json
|
||||
controllers/
|
||||
│ ├── account_controller.py
|
||||
│ ├── main_controller.py
|
||||
│ ├── settings_controller.py
|
||||
│ └── platform_controllers/
|
||||
│ ├── base_controller.py
|
||||
│ ├── instagram_controller.py
|
||||
│ └── tiktok_controller.py
|
||||
database/
|
||||
│ ├── accounts.db
|
||||
│ ├── account_repository.py
|
||||
│ ├── db_manager.py
|
||||
│ ├── instagram_accounts.db
|
||||
│ ├── schema.sql
|
||||
│ └── __init__.py
|
||||
licensing/
|
||||
│ ├── hardware_fingerprint.py
|
||||
│ ├── license_manager.py
|
||||
│ ├── license_validator.py
|
||||
│ └── __init__.py
|
||||
localization/
|
||||
│ ├── language_manager.py
|
||||
│ ├── __init__.py
|
||||
│ └── languages/
|
||||
│ ├── de.json
|
||||
│ ├── en.json
|
||||
│ ├── es.json
|
||||
│ ├── fr.json
|
||||
│ └── ja.json
|
||||
logs/
|
||||
│ ├── main.log
|
||||
│ └── screenshots
|
||||
resources/
|
||||
│ ├── icons/
|
||||
│ │ ├── de.svg
|
||||
│ │ ├── en.svg
|
||||
│ │ ├── es.svg
|
||||
│ │ ├── facebook.svg
|
||||
│ │ ├── fr.svg
|
||||
│ │ ├── instagram.svg
|
||||
│ │ ├── ja.svg
|
||||
│ │ ├── moon.svg
|
||||
│ │ ├── sun.svg
|
||||
│ │ └── tiktok.svg
|
||||
│ └── themes/
|
||||
│ ├── dark.qss
|
||||
│ └── light.qss
|
||||
social_networks/
|
||||
│ ├── base_automation.py
|
||||
│ ├── __init__.py
|
||||
│ ├── facebook/
|
||||
│ │ ├── facebook_automation.py
|
||||
│ │ ├── facebook_login.py
|
||||
│ │ ├── facebook_registration.py
|
||||
│ │ ├── facebook_selectors.py
|
||||
│ │ ├── facebook_ui_helper.py
|
||||
│ │ ├── facebook_utils.py
|
||||
│ │ ├── facebook_verification.py
|
||||
│ │ ├── facebook_workflow.py
|
||||
│ │ └── __init__.py
|
||||
│ ├── instagram/
|
||||
│ │ ├── instagram_automation.py
|
||||
│ │ ├── instagram_login.py
|
||||
│ │ ├── instagram_registration.py
|
||||
│ │ ├── instagram_selectors.py
|
||||
│ │ ├── instagram_ui_helper.py
|
||||
│ │ ├── instagram_utils.py
|
||||
│ │ ├── instagram_verification.py
|
||||
│ │ ├── instagram_workflow.py
|
||||
│ │ └── __init__.py
|
||||
│ ├── tiktok/
|
||||
│ │ ├── tiktok_automation.py
|
||||
│ │ ├── tiktok_login.py
|
||||
│ │ ├── tiktok_registration.py
|
||||
│ │ ├── tiktok_selectors.py
|
||||
│ │ ├── tiktok_ui_helper.py
|
||||
│ │ ├── tiktok_utils.py
|
||||
│ │ ├── tiktok_verification.py
|
||||
│ │ ├── tiktok_workflow.py
|
||||
│ │ └── __init__.py
|
||||
│ └── twitter/
|
||||
│ ├── twitter_automation.py
|
||||
│ ├── twitter_login.py
|
||||
│ ├── twitter_registration.py
|
||||
│ ├── twitter_selectors.py
|
||||
│ ├── twitter_ui_helper.py
|
||||
│ ├── twitter_utils.py
|
||||
│ ├── twitter_verification.py
|
||||
│ ├── twitter_workflow.py
|
||||
│ └── __init__.py
|
||||
testcases/
|
||||
│ └── imap_test.py
|
||||
updates/
|
||||
│ ├── downloader.py
|
||||
│ ├── update_checker.py
|
||||
│ ├── update_v1.1.0.zip
|
||||
│ ├── version.py
|
||||
│ └── __init__.py
|
||||
utils/
|
||||
│ ├── birthday_generator.py
|
||||
│ ├── email_handler.py
|
||||
│ ├── human_behavior.py
|
||||
│ ├── logger.py
|
||||
│ ├── password_generator.py
|
||||
│ ├── proxy_rotator.py
|
||||
│ ├── text_similarity.py
|
||||
│ ├── theme_manager.py
|
||||
│ ├── update_checker.py
|
||||
│ └── username_generator.py
|
||||
views/
|
||||
├── about_dialog.py
|
||||
├── main_window.py
|
||||
├── platform_selector.py
|
||||
├── tabs/
|
||||
│ ├── accounts_tab.py
|
||||
│ ├── generator_tab.py
|
||||
│ └── settings_tab.py
|
||||
└── widgets/
|
||||
├── language_dropdown.py
|
||||
└── platform_button.py
|
||||
```
|
||||
|
||||
## Key Files
|
||||
|
||||
- `README.md`
|
||||
- `requirements.txt`
|
||||
|
||||
## Claude Integration
|
||||
|
||||
This project is managed with Claude Project Manager. To work with this project:
|
||||
|
||||
1. Open Claude Project Manager
|
||||
2. Click on this project's tile
|
||||
3. Claude will open in the project directory
|
||||
|
||||
## Notes
|
||||
|
||||
*Add your project-specific notes here*
|
||||
|
||||
---
|
||||
|
||||
## Development Log
|
||||
|
||||
- README generated on 2025-07-01 20:43:39
|
||||
- README updated on 2025-07-01 21:09:06
|
||||
- README updated on 2025-07-01 21:59:23
|
||||
- README updated on 2025-07-01 22:08:40
|
||||
- README updated on 2025-07-01 22:08:50
|
||||
- README updated on 2025-07-01 22:09:15
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren