======
Purple
======
A historically accurate PURPLE simulator written in Python 3
------------------------------------------------------------
- **Author:** Brian Neal <bgneal@gmail.com>
- **Version:** 1.0.0
- **Date:** November 2, 2025
- **Home Page:** https://github.com/gremmie/purple
- **License:** MIT License (see LICENSE.txt)
- **Documentation:** This file
- **Support:** https://github.com/gremmie/purple/issues
``Purple`` is a Python library and command-line utility for simulating the
`PURPLE Machine`_, a cipher machine used by the Japanese Foreign Office before
and during the Second World War. PURPLE was the code name given to the machine
by U.S. cryptanalysts. The Japanese called the machine *97-shiki ōbun inji-ki*
(System 97 Printing Machine for European Characters), and *Angōki B-kata* (Type
B Cipher Machine). The machine was used for secure diplomatic communications
and was implemented as an electromechanical stepping-switch device.
This project is a Python 3 library and command-line utility for encrypting and
decrypting text by simulating the operation of an actual PURPLE machine.
If you are brand new to the ``Purple`` cipher machine, please skip down to the
references section and familiarize yourself with the device. This will help you
understand the terminology used in the documentation, below.
Requirements
############
``Purple`` was written in Python_ 3, specifically 3.3.2, and has no other external
dependencies.
Installation
############
``Purple`` is available on the `Python Package Index`_ (PyPI).::
$ python3 -m pip install purple
If you aren't familiar with installing Python packages, please see, for
example, the `Python Packaging Installing Packages tutorial`_.
The latest version of ``Purple`` can always be found at the `Purple GitHub page`_.
To run the unit tests::
$ cd where-you-extracted-purple
$ python3 -m unittest discover
Initial Settings Syntax
#######################
In order to exchange messages, each message recipient must use the same initial
machine settings. For the ``Purple`` machine, these settings are the initial
switch positions for the "sixes" and three "twenties" stepping switches, the
switch motion order (which twenties switch is the fast switch, which is the
middle switch, and which is the slow switch), and finally the plugboard
alphabet mapping.
The ``Purple`` simulation uses the following syntax in both its command-line
application and library code.
For the switches, we borrow the notation used by U.S. cryptanalysts, for
example::
9-1,24,6-23
Here the first number before leading dash, 9, indicates the starting position
of the sixes switch. The next three numbers are the starting positions for the
three twenties switches numbered 1, 2, and 3. Each switch position is a number
from 1 through 25, inclusive. Finally, after the last dash are two digits which
indicate the switch stepping motion. The first number, in this case 2,
indicates that the twenties switch #2 is the fast switch. The second number, 3,
indicates twenties switch #3 is the middle switch. Thus the slow switch, which
is never listed, is in this case twenties switch #1. When using this syntax, do
not insert space characters.
The plugboard alphabet setting describes how the input typewriters are wired to
the plugboard. We represent this setting as a string of the 26 uppercase
alphabet letters where the first six letters are the wiring to the sixes
switch, and the remaining 20 are wired to the first stage of the twenties
switches. For example::
AEIOUYBCDFGHJKLMNPQRSTVWXZ
For the alphabet setting to be valid, do not insert spaces, and ensure all 26
letters are used exactly once.
Command-line Usage
##################
To get help on the command-line ``Purple`` utility, execute the ``purple``
command with the ``--help`` option::
$ purple --help
usage: purple [-h] [-e] [-d] [-f] [-s SWITCHES] [-a ALPHABET] [-t TEXT]
[-i FILE] [-g N] [-w N]
PURPLE cipher machine simulator
optional arguments:
-h, --help show this help message and exit
-e, --encrypt perform an encrypt operation
-d, --decrypt perform a decrypt operation
-f, --filter filter plaintext and provide useful substitutions
-s SWITCHES, --switches SWITCHES
switch settings, e.g. 9-1,24,6-23
-a ALPHABET, --alphabet ALPHABET
plugboard wiring string, 26-letters; e.g.
AEIOUYBCDFGHJKLMNPQRSTVWXZ
-t TEXT, --text TEXT input text to encrypt/decrypt
-i FILE, --input FILE
file to read input text from, - for stdin
-g N, --group N if non-zero, group output in N-letter groups [default:
5]
-w N, --width N wrap output text to N letters; a value of 0 means do
not wrap [default: 70]
Supply either -e or -d, but not both, to perform either an encrypt or decrypt.
If the -s option is not supplied, the value of the environment variable
PURPLE97_SWITCHES will be used. If the -a option is not supplied, the value of
the environment variable PURPLE97_ALPHABET will be used. Input text is
supplied either by the -t or by the -f options, but not both.
The ``purple`` command operates in two modes, either encrypt (specified with
``-e`` or ``--encrypt``) or decrypt (``-d`` or ``--decrypt``). Input text can
be specified on the command-line with the ``-t`` or ``--text`` option, or
a read from a file (``-i`` or ``--input``).
The ``-s`` (or ``--switches``) and ``-a`` (or ``--alphabet``) settings
determine the initial machine settings. They use the syntax described above in
the Initial Settings Syntax section.
If you are going to be working with the same initial switch settings and
plugboard alphabet over many command invocations it may be more convenient to
specify them as environment variables instead of repeatedly using the
command-line arguments. **The examples below assume these statements have been
executed**::
$ export PURPLE97_SWITCHES=9-1,24,6-23
$ export PURPLE97_ALPHABET=NOKTYUXEQLHBRMPDICJASVWGZF
If you do not specify initial settings, the ``purple`` machine will attempt to
read them from these two environment variables. Failing that, ``purple`` will
use the following initial settings:
* default switch settings: 1-1,1,1-12
* default alphabet: AEIOUYBCDFGHJKLMNPQRSTVWXZ
When encrypting text, the ``purple`` machine only accepts the letters A-Z, but
also allows for "garble" letters to be indicated by using the ``-`` (dash)
character. This means all punctuation and spaces must be either be omitted or
input via some other convention. The ``-f`` or ``--filter`` flag, when present,
relaxes these restrictions a bit. When this flag is on, all lowercase letters
will be converted to uppercase, digits will be converted to words (e.g.
5 becomes FIVE), and all other characters will be ignored.
A simple encrypt example using the ``-f`` flag is given below::
$ purple --encrypt -t "The PURPLE machine is now online" -f
OGIVT SIAAH MWMHT VIBYY JUOJF UE
By default ``purple`` prints the output in 5-letter groups. This can be
disabled or customized with the ``--group`` and ``--width`` options.
To decrypt this message::
$ purple --decrypt -t "OGIVT SIAAH MWMHT VIBYY JUOJF UE"
THEPU RPLEM ACHIN EISNO WONLI NE
Note that spaces are ignored on input. Again the output is produced in 5-letter
groups and wrapped at 70 letters per line. Here is the output again with
grouping disabled::
$ purple -d -t "OGIVT SIAAH MWMHT VIBYY JUOJF UE" -g 0
THEPURPLEMACHINEISNOWONLINE
You can use file redirection to capture output in a file::
$ purple -e -t "The PURPLE machine is now online" -f > secret.txt
$ purple -d -i secret.txt
THEPU RPLEM ACHIN EISNO WONLI NE
Library Usage
#############
To use ``Purple`` from within Python code you must first construct
a ``Purple97`` object, which represents a single PURPLE cipher machine. The
constructor is given below::
class Purple97(switches_pos=None, fast_switch=1, middle_switch=2,
alphabet=None)
The ``switches_pos`` argument, when not ``None``, must be a 4-tuple or list of
4 integers that describe the initial switch positions. Element 0 is the sixes
initial position, and the remaining elements are the initial positions of the
three twenties switches. These values must be in the range 0-24, inclusive.
If ``None`` then switch positions of all zeroes is assumed.
The ``fast_switch`` argument indicates which twenties switch (numbered 1-3) is
the fast switch. Likewise, ``middle_switch`` indicates which switch is the
middle switch. The slow switch is inferred. It is an error to give the
``fast_switch`` and ``middle_switch`` arguments the same value.
The ``alphabet`` argument is the plugboard alphabet mapping. It is expected to
be a 26-letter uppercase string. If ``None``, a mapping of
``AEIOUYBCDFGHJKLMNPQRSTVWXZ`` is assumed.
For convenience, another constructor is provided that allows you to specify
initial settings in the syntax described above::
classmethod Purple97.from_key_sheet(switches, alphabet=None)
Here ``switches`` is a string in the syntax described above, e.g.
``'9-1,24,6-23'``.
The ``alphabet`` argument is as described in the first constructor.
Once constructed, you can use the ``Purple97`` object to perform encrypt and
decrypt operations. For example::
from purple.machine import Purple97
purple = Purple97.from_key_sheet(
switches='9-1,24,6-23',
alphabet='NOKTYUXEQLHBRMPDICJASVWGZF')
ciphertext = purple.encrypt('THEPURPLEMACHINEISONLINE')
purple = Purple97([8, 0, 23, 5], fast_switch=2, middle_switch=3,
alphabet='NOKTYUXEQLHBRMPDICJASVWGZF')
plaintext = purple.decrypt(ciphertext)
For more information, please review the docstrings in the code.
Support
#######
To report a bug or suggest a feature, please use the issue tracker at the
`Purple GitHub page`_. You can also email the author using the address at
the top of this file.
References
##########
#. *PURPLE Revealed: Simulation and Computer-aided Cryptanalysis of Angooki
Taipu B*, by Wes Freeman, Geoff Sullivan, and Frode Weierud. This paper
was published in Cryptologia, Volume 27, Issue 1, January, 2003, pp. 1-43.
#. Frode Weierud's CryptoCellar page: `The PURPLE Machine`_
#. Wikipedia Article: `PURPLE Machine`_
The paper in reference 1 is also available here:
http://cryptocellar.web.cern.ch/cryptocellar/pubs/PurpleRevealed.pdf
This simulator would not have been possible without Frode Weierud's
CryptoCellar page and the detailed explanations and analysis found in reference
1. The author is also deeply grateful for email discussions with Frode Weierud
and Geoff Sullivan who provided me with plaintext, advice, and encouragement.
The ``Purple`` simulator's operation was checked against the simulator found in
reference 2.
.. _PURPLE Machine: http://en.wikipedia.org/wiki/Purple_(cipher_machine)
.. _Python: http://www.python.org
.. _Python Package Index: http://pypi.python.org/pypi/purple/
.. _Python Package Index: http://pypi.python.org/pypi/purple/
.. _Python Packaging Installing Packages tutorial: https://packaging.python.org/en/latest/tutorials/installing-packages/
.. _Purple GitHub page: https://github.com/gremmie/purple
.. _The PURPLE Machine: http://cryptocellar.web.cern.ch/cryptocellar/simula/purple/
Raw data
{
"_id": null,
"home_page": null,
"name": "purple",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.2.2",
"maintainer_email": null,
"keywords": "crypto, cryptography, simulator, purple, enigma, ww2, world war 2",
"author": null,
"author_email": "Brian Neal <bgneal@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/e6/44/eaa78d9a12a599564a50b6753d41144ce6ab002fbc6dc6474348dd65ff08/purple-1.0.0.tar.gz",
"platform": null,
"description": "======\nPurple\n======\n\nA historically accurate PURPLE simulator written in Python 3\n------------------------------------------------------------\n\n- **Author:** Brian Neal <bgneal@gmail.com>\n- **Version:** 1.0.0\n- **Date:** November 2, 2025\n- **Home Page:** https://github.com/gremmie/purple\n- **License:** MIT License (see LICENSE.txt)\n- **Documentation:** This file\n- **Support:** https://github.com/gremmie/purple/issues\n\n``Purple`` is a Python library and command-line utility for simulating the\n`PURPLE Machine`_, a cipher machine used by the Japanese Foreign Office before\nand during the Second World War. PURPLE was the code name given to the machine\nby U.S. cryptanalysts. The Japanese called the machine *97-shiki \u014dbun inji-ki*\n(System 97 Printing Machine for European Characters), and *Ang\u014dki B-kata* (Type\nB Cipher Machine). The machine was used for secure diplomatic communications\nand was implemented as an electromechanical stepping-switch device.\n\nThis project is a Python 3 library and command-line utility for encrypting and\ndecrypting text by simulating the operation of an actual PURPLE machine.\n\nIf you are brand new to the ``Purple`` cipher machine, please skip down to the\nreferences section and familiarize yourself with the device. This will help you\nunderstand the terminology used in the documentation, below.\n\n\nRequirements\n############\n\n``Purple`` was written in Python_ 3, specifically 3.3.2, and has no other external\ndependencies.\n\n\nInstallation\n############\n\n``Purple`` is available on the `Python Package Index`_ (PyPI).::\n\n $ python3 -m pip install purple\n\nIf you aren't familiar with installing Python packages, please see, for\nexample, the `Python Packaging Installing Packages tutorial`_.\n\nThe latest version of ``Purple`` can always be found at the `Purple GitHub page`_.\n\nTo run the unit tests::\n\n $ cd where-you-extracted-purple\n $ python3 -m unittest discover\n\n\nInitial Settings Syntax\n#######################\n\nIn order to exchange messages, each message recipient must use the same initial\nmachine settings. For the ``Purple`` machine, these settings are the initial\nswitch positions for the \"sixes\" and three \"twenties\" stepping switches, the\nswitch motion order (which twenties switch is the fast switch, which is the\nmiddle switch, and which is the slow switch), and finally the plugboard\nalphabet mapping.\n\nThe ``Purple`` simulation uses the following syntax in both its command-line\napplication and library code.\n\nFor the switches, we borrow the notation used by U.S. cryptanalysts, for\nexample::\n\n 9-1,24,6-23\n\nHere the first number before leading dash, 9, indicates the starting position\nof the sixes switch. The next three numbers are the starting positions for the\nthree twenties switches numbered 1, 2, and 3. Each switch position is a number\nfrom 1 through 25, inclusive. Finally, after the last dash are two digits which\nindicate the switch stepping motion. The first number, in this case 2,\nindicates that the twenties switch #2 is the fast switch. The second number, 3,\nindicates twenties switch #3 is the middle switch. Thus the slow switch, which\nis never listed, is in this case twenties switch #1. When using this syntax, do\nnot insert space characters.\n\nThe plugboard alphabet setting describes how the input typewriters are wired to\nthe plugboard. We represent this setting as a string of the 26 uppercase\nalphabet letters where the first six letters are the wiring to the sixes\nswitch, and the remaining 20 are wired to the first stage of the twenties\nswitches. For example::\n\n AEIOUYBCDFGHJKLMNPQRSTVWXZ\n\nFor the alphabet setting to be valid, do not insert spaces, and ensure all 26\nletters are used exactly once.\n\n\nCommand-line Usage\n##################\n\nTo get help on the command-line ``Purple`` utility, execute the ``purple``\ncommand with the ``--help`` option::\n\n $ purple --help\n usage: purple [-h] [-e] [-d] [-f] [-s SWITCHES] [-a ALPHABET] [-t TEXT]\n [-i FILE] [-g N] [-w N]\n\n PURPLE cipher machine simulator\n\n optional arguments:\n -h, --help show this help message and exit\n -e, --encrypt perform an encrypt operation\n -d, --decrypt perform a decrypt operation\n -f, --filter filter plaintext and provide useful substitutions\n -s SWITCHES, --switches SWITCHES\n switch settings, e.g. 9-1,24,6-23\n -a ALPHABET, --alphabet ALPHABET\n plugboard wiring string, 26-letters; e.g.\n AEIOUYBCDFGHJKLMNPQRSTVWXZ\n -t TEXT, --text TEXT input text to encrypt/decrypt\n -i FILE, --input FILE\n file to read input text from, - for stdin\n -g N, --group N if non-zero, group output in N-letter groups [default:\n 5]\n -w N, --width N wrap output text to N letters; a value of 0 means do\n not wrap [default: 70]\n\n Supply either -e or -d, but not both, to perform either an encrypt or decrypt.\n If the -s option is not supplied, the value of the environment variable\n PURPLE97_SWITCHES will be used. If the -a option is not supplied, the value of\n the environment variable PURPLE97_ALPHABET will be used. Input text is\n supplied either by the -t or by the -f options, but not both.\n\nThe ``purple`` command operates in two modes, either encrypt (specified with\n``-e`` or ``--encrypt``) or decrypt (``-d`` or ``--decrypt``). Input text can\nbe specified on the command-line with the ``-t`` or ``--text`` option, or\na read from a file (``-i`` or ``--input``).\n\nThe ``-s`` (or ``--switches``) and ``-a`` (or ``--alphabet``) settings\ndetermine the initial machine settings. They use the syntax described above in\nthe Initial Settings Syntax section.\n\nIf you are going to be working with the same initial switch settings and\nplugboard alphabet over many command invocations it may be more convenient to\nspecify them as environment variables instead of repeatedly using the\ncommand-line arguments. **The examples below assume these statements have been\nexecuted**::\n\n $ export PURPLE97_SWITCHES=9-1,24,6-23\n $ export PURPLE97_ALPHABET=NOKTYUXEQLHBRMPDICJASVWGZF\n\nIf you do not specify initial settings, the ``purple`` machine will attempt to\nread them from these two environment variables. Failing that, ``purple`` will\nuse the following initial settings:\n\n* default switch settings: 1-1,1,1-12\n* default alphabet: AEIOUYBCDFGHJKLMNPQRSTVWXZ\n\nWhen encrypting text, the ``purple`` machine only accepts the letters A-Z, but\nalso allows for \"garble\" letters to be indicated by using the ``-`` (dash)\ncharacter. This means all punctuation and spaces must be either be omitted or\ninput via some other convention. The ``-f`` or ``--filter`` flag, when present,\nrelaxes these restrictions a bit. When this flag is on, all lowercase letters\nwill be converted to uppercase, digits will be converted to words (e.g.\n5 becomes FIVE), and all other characters will be ignored.\n\nA simple encrypt example using the ``-f`` flag is given below::\n\n $ purple --encrypt -t \"The PURPLE machine is now online\" -f\n OGIVT SIAAH MWMHT VIBYY JUOJF UE\n\nBy default ``purple`` prints the output in 5-letter groups. This can be\ndisabled or customized with the ``--group`` and ``--width`` options.\n\nTo decrypt this message::\n\n $ purple --decrypt -t \"OGIVT SIAAH MWMHT VIBYY JUOJF UE\"\n THEPU RPLEM ACHIN EISNO WONLI NE\n\nNote that spaces are ignored on input. Again the output is produced in 5-letter\ngroups and wrapped at 70 letters per line. Here is the output again with\ngrouping disabled::\n\n $ purple -d -t \"OGIVT SIAAH MWMHT VIBYY JUOJF UE\" -g 0\n THEPURPLEMACHINEISNOWONLINE\n\nYou can use file redirection to capture output in a file::\n\n $ purple -e -t \"The PURPLE machine is now online\" -f > secret.txt\n $ purple -d -i secret.txt\n THEPU RPLEM ACHIN EISNO WONLI NE\n\n\nLibrary Usage\n#############\n\nTo use ``Purple`` from within Python code you must first construct\na ``Purple97`` object, which represents a single PURPLE cipher machine. The\nconstructor is given below::\n\n class Purple97(switches_pos=None, fast_switch=1, middle_switch=2,\n alphabet=None)\n\nThe ``switches_pos`` argument, when not ``None``, must be a 4-tuple or list of\n4 integers that describe the initial switch positions. Element 0 is the sixes\ninitial position, and the remaining elements are the initial positions of the\nthree twenties switches. These values must be in the range 0-24, inclusive.\nIf ``None`` then switch positions of all zeroes is assumed.\n\nThe ``fast_switch`` argument indicates which twenties switch (numbered 1-3) is\nthe fast switch. Likewise, ``middle_switch`` indicates which switch is the\nmiddle switch. The slow switch is inferred. It is an error to give the\n``fast_switch`` and ``middle_switch`` arguments the same value.\n\nThe ``alphabet`` argument is the plugboard alphabet mapping. It is expected to\nbe a 26-letter uppercase string. If ``None``, a mapping of\n``AEIOUYBCDFGHJKLMNPQRSTVWXZ`` is assumed.\n\nFor convenience, another constructor is provided that allows you to specify\ninitial settings in the syntax described above::\n\n classmethod Purple97.from_key_sheet(switches, alphabet=None)\n\nHere ``switches`` is a string in the syntax described above, e.g.\n``'9-1,24,6-23'``.\n\nThe ``alphabet`` argument is as described in the first constructor.\n\nOnce constructed, you can use the ``Purple97`` object to perform encrypt and\ndecrypt operations. For example::\n\n from purple.machine import Purple97\n\n purple = Purple97.from_key_sheet(\n switches='9-1,24,6-23',\n alphabet='NOKTYUXEQLHBRMPDICJASVWGZF')\n\n ciphertext = purple.encrypt('THEPURPLEMACHINEISONLINE')\n\n purple = Purple97([8, 0, 23, 5], fast_switch=2, middle_switch=3,\n alphabet='NOKTYUXEQLHBRMPDICJASVWGZF')\n\n plaintext = purple.decrypt(ciphertext)\n\nFor more information, please review the docstrings in the code.\n\n\nSupport\n#######\n\nTo report a bug or suggest a feature, please use the issue tracker at the\n`Purple GitHub page`_. You can also email the author using the address at\nthe top of this file.\n\n\nReferences\n##########\n\n#. *PURPLE Revealed: Simulation and Computer-aided Cryptanalysis of Angooki\n Taipu B*, by Wes Freeman, Geoff Sullivan, and Frode Weierud. This paper\n was published in Cryptologia, Volume 27, Issue 1, January, 2003, pp. 1-43.\n#. Frode Weierud's CryptoCellar page: `The PURPLE Machine`_\n#. Wikipedia Article: `PURPLE Machine`_\n\nThe paper in reference 1 is also available here:\nhttp://cryptocellar.web.cern.ch/cryptocellar/pubs/PurpleRevealed.pdf\n\nThis simulator would not have been possible without Frode Weierud's\nCryptoCellar page and the detailed explanations and analysis found in reference\n1. The author is also deeply grateful for email discussions with Frode Weierud\nand Geoff Sullivan who provided me with plaintext, advice, and encouragement.\n\nThe ``Purple`` simulator's operation was checked against the simulator found in\nreference 2.\n\n\n.. _PURPLE Machine: http://en.wikipedia.org/wiki/Purple_(cipher_machine)\n.. _Python: http://www.python.org\n.. _Python Package Index: http://pypi.python.org/pypi/purple/\n.. _Python Package Index: http://pypi.python.org/pypi/purple/\n.. _Python Packaging Installing Packages tutorial: https://packaging.python.org/en/latest/tutorials/installing-packages/\n.. _Purple GitHub page: https://github.com/gremmie/purple\n.. _The PURPLE Machine: http://cryptocellar.web.cern.ch/cryptocellar/simula/purple/\n",
"bugtrack_url": null,
"license": null,
"summary": "Simulation of the WW2 Japanese PURPLE cipher machine.",
"version": "1.0.0",
"project_urls": {
"Changelog": "https://github.com/gremmie/purple/blob/master/CHANGELOG.md",
"Homepage": "https://github.com/gremmie/purple",
"Issues": "https://github.com/gremmie/purple/issues"
},
"split_keywords": [
"crypto",
" cryptography",
" simulator",
" purple",
" enigma",
" ww2",
" world war 2"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "760b4fbcd184d3a33b1ac787db5395144fdc41834fa446331bc7ba8c6c1922cc",
"md5": "df2bcf56727e3ed07f947c9f423b8cd1",
"sha256": "f2ff89a47dc5c425ad0026a5a464f9a76cb8a7ea5bb025805633007c0c4f5247"
},
"downloads": -1,
"filename": "purple-1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "df2bcf56727e3ed07f947c9f423b8cd1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.2.2",
"size": 21206,
"upload_time": "2025-11-06T22:11:00",
"upload_time_iso_8601": "2025-11-06T22:11:00.450444Z",
"url": "https://files.pythonhosted.org/packages/76/0b/4fbcd184d3a33b1ac787db5395144fdc41834fa446331bc7ba8c6c1922cc/purple-1.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e644eaa78d9a12a599564a50b6753d41144ce6ab002fbc6dc6474348dd65ff08",
"md5": "b5350dc829a3a4200d588c079290db1f",
"sha256": "a7261956c19ff086cf81f858dc0efb753a3428e2798a7bdcbe047852012b5100"
},
"downloads": -1,
"filename": "purple-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "b5350dc829a3a4200d588c079290db1f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.2.2",
"size": 23122,
"upload_time": "2025-11-06T22:11:01",
"upload_time_iso_8601": "2025-11-06T22:11:01.490151Z",
"url": "https://files.pythonhosted.org/packages/e6/44/eaa78d9a12a599564a50b6753d41144ce6ab002fbc6dc6474348dd65ff08/purple-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-11-06 22:11:01",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "gremmie",
"github_project": "purple",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "purple"
}