Metadata-Version: 2.4
Name: amuesm
Version: 2.12
Dynamic: Classifier
Summary: A module used to create random passwords with customizable options and to encode/decode strings!
Project-URL: BugTracker, https://github.com/AnniePrograms/amuesm/issues
Project-URL: Respository, https://github.com/AnniePrograms/amuesm.git
Author-email: Annie <SocializingAnnie@gmail.com>
License: MIT
License-File: LICENSE
Requires-Python: >=3.8
Description-Content-Type: text/markdown

(ORIGINALLY KNOWN AS DAXPASS)

amuesm let's you not only create passwords with custom requirements, it can also encode and decode strings in your own custom charset! amuesm stand for:

- Annie's 
- Multi
- Use
- Encryption
- Security
- Module


___

**DISCLAIMER**

It is recommended that amuesm should only be used in your own custom databases/servers, amuesm is not secure to use when creating passwords for products like Google. We are also not responsible for any harm according to the MIT license.
___

createpass:
```python
import amuesm

print(amuesm.createpass(['a', 'b'], 5))
```
Output:
baaba

___

en:
```python
import amuesm

print(amuesm.en('abc', ['a', 'b', 'c']))
```
Output:
```
- -- ---
```
___

de:
```python
import amuesm

print(amuesm.de('- -- ---', ['a', 'b', 'c']))
```
Output:
```
abc
```
___

If you would like to add credits to your project use amuesmcredits()
