Skip to content

Commit

Permalink
Repository rename to defendatron
Browse files Browse the repository at this point in the history
  • Loading branch information
w4ffl35 committed Apr 24, 2024
1 parent 368968c commit e9c7845
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Defendron
# Defendatron

Defendron is a simple coordinator for `Protectbots`, Python modules that provide security features for your applications.
Defendatron is a simple coordinator for `Protectbots`, Python modules that provide security features for your applications.


---
Expand All @@ -12,39 +12,39 @@ Defendron is a simple coordinator for `Protectbots`, Python modules that provide
## Installation

```bash
pip install defendron
pip install defendatron
```

## Usage

```python
import defendron
import defendatron

# Activate defendron (all protectbots)
defendron.activate()
# Activate defendatron (all protectbots)
defendatron.activate()

# Deactivate defendron (all protectbots)
defendron.deactivate()
# Deactivate defendatron (all protectbots)
defendatron.deactivate()

# Activate specific protectbots
defendron.nullscream.activate()
defendron.shadowlogger.activate()
defendron.lockdown.activate()
defendatron.nullscream.activate()
defendatron.shadowlogger.activate()
defendatron.lockdown.activate()

# Deactivate specific protectbots
defendron.nullscream.deactivate()
defendron.shadowlogger.deactivate()
defendron.lockdown.deactivate()
defendatron.nullscream.deactivate()
defendatron.shadowlogger.deactivate()
defendatron.lockdown.deactivate()
```

See `src/defendron/__init__.py` for more advanced usage.
See `src/defendatron/__init__.py` for more advanced usage.

## When Protecbots assemble, they create DEFENDRON
## When Protecbots assemble, they create DEFENDATRON
![img_2.png](img_1.png)

---

Defendron is built with `Protectbots`, Python modules that provide security features for your applications.
Defendatron is built with `Protectbots`, Python modules that provide security features for your applications.
Each `Protectbot` is designed to defend against specific threats and vulnerabilities,
helping to provide another layer of protection for your code.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(
name="defendron",
name="defendatron",
version="0.1.0",
author="Capsize LLC",
description="",
Expand All @@ -10,7 +10,7 @@
keywords="",
license="GPL-3.0",
author_email="[email protected]",
url="https://github.com/Capsize-Games/defendron",
url="https://github.com/Capsize-Games/defendatron",
package_dir={"": "src"},
packages=find_packages("src"),
python_requires=">=3.10.0",
Expand Down
2 changes: 1 addition & 1 deletion src/defendron/__init__.py → src/defendatron/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def activate(
activate_lockdown: bool = False,
activate_nullscream: bool = False,
):
print("Activating defendron")
print("Activating defendatron")
if activate_shadowlogger:
print("Activating shadow logger")
shadowlogger.manager.activate()
Expand Down

0 comments on commit e9c7845

Please sign in to comment.