Metadata-Version: 2.4
Name: pickart
Version: 2.0.0
Summary: This is helper package for game called 'Colouring art.
Project-URL: Homepage, https://github.com/AntynK/Pickart
Project-URL: Repository, https://github.com/AntynK/Pickart.git
Project-URL: Issues, https://github.com/AntynK/Pickart/issues
Author: Andrii Karandashov
License-Expression: MIT
License-File: LICENSE
Keywords: Game,Painting,Pygame
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Pickart
> [!NOTE]
> Цей документ має переклад [українською](https://github.com/AntynK/Pickart/blob/main/README_UA.md).

Pickart - this is the file format used by the game called [Colouring art](https://github.com/AntynK/ColouringArt) for storing images.

Name 'Pickart' - comes from a combination of two words ['pickle'](https://docs.python.org/3.9/library/pickle.html) and 'art'.

## About format
The root of the .pickart file is a Python dictionary serialised with [pickle](https://docs.python.org/3.9/library/pickle.html) and compressed with [gzip](https://docs.python.org/3.9/library/gzip.html).

File structure (version 1.0.0):

``` Python
{
    "info":{
        "size": (1, 1),
        "version": 1
    },
    "palette":[(red, green, blue, alpha), ...],
    "pixels": [
        [(colour_index, is_painted), ...]
    ]
}
```

`"info"` - stores image size and Pickart file version.

`"palette"` - stores colour palette. Every colour is a tuple of integers. Integer value is in range from 0 to 255 (including), `alpha` - optional. 

`"pixels"` - stores a matrix which contains a tuple with `colour_index`(int) and flag `painted`(bool). 

`colour_index` - colour index in palette if this pixel is transparent (`alpha` = 0), index becomes `None`.

`painted` - represents pixel state, if false it will appear as a shade of grey, otherwise like normal colour. 

Package [pickle](https://docs.python.org/3.9/library/pickle.html) has security issues. The game does not use standard pickle.load() instead it uses [restricted loader](https://docs.python.org/3/library/pickle.html#restricting-globals) which allows only basic types(int, str, list, dict, tuple, set). If it detects that the file contains external types (any object that is imported), it will throw the exception `UnpicklingError` with the message `There is something strange in the file, do not trust it!`.


## Command line interface
This package allows converting .png files to .pickart and vice versa.

The command below shows all arguments:

**Windows:**
```bash
python -m pickart -h
```
**For Linux and macOS**
```bash
python3 -m pickart -h
```

### Basic arguments
`-i "path"` - indicates the folder in which the files for conversion are located (by default, 'input'). The folder must exist.

`-o "path"` - indicates the folder in which converted files will be stored (by default, 'output'). May not exist.

`-m "mode"` - indicates conversion mode: 
* `to_pickart` - .png files to .pickart files.
* `to_png` - .pickart files to .png files.

## Tests
All tests are written using the [unittest](https://docs.python.org/3/library/unittest.html) module. 
To run use the command:

**Windows:**
```bash
python -m unittest discover
```
**For Linux and macOS**
```bash
python3 -m unittest discover
```
