This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright 2026 Alexios Angel | |
| # 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. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Delete ALL Cloudflare DNS records for each domain in domains.txt. | |
| Usage: | |
| python delete_dns_records.py --api-token YOUR_TOKEN --domains-file domains.txt | |
| """ | |
| """ | |
| API permissions: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Delete ALL Cloudflare Page Rules for each domain in domains.txt. | |
| Authentication uses only an API Token (no email needed). | |
| Usage: | |
| python delete_page_rules.py --api-token YOUR_TOKEN --domains-file domains.txt | |
| """ | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Disable Cloudflare Email Routing for domains where it is currently enabled. | |
| Usage: | |
| python disable_email_routing.py --api-token YOUR_TOKEN \ | |
| --domains-file domains.txt | |
| """ | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Welcome to Our Project - A Multi-Project C++ Template with Conan Dependency Management | |
| ------------------------------------------------------------------------------------- | |
| This is a template for a large and complex C++ project with Conan dependency management, consisting of multiple sub- | |
| projects. This readme will guide you through understanding our project structure and how to set up, build, and run the | |
| project. | |
| Project Structure | |
| ----------------- |