├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .mergify.yml ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── .gitignore ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── images │ └── available_units.png ├── index.rst ├── installation.rst ├── make.bat ├── nider.colors.rst ├── nider.mixins.rst ├── nider.rst ├── readme.rst └── usage.rst ├── examples ├── add_watermark_example │ ├── bg.jpg │ ├── result.jpg │ └── script.py ├── draw_on_bg_example │ ├── result.png │ └── script.py ├── draw_on_bg_with_watermark_example │ ├── result.png │ └── script.py ├── draw_on_image_example │ ├── bg.jpg │ ├── result.png │ └── script.py ├── draw_on_texture_example │ ├── result.png │ ├── script.py │ └── texture.png ├── example1 │ ├── bg.jpg │ ├── result.png │ └── script.py ├── example2 │ ├── bg.jpg │ ├── result.png │ └── script.py ├── example3 │ ├── bg.png │ ├── result.png │ └── script.py └── example4 │ ├── result.png │ ├── script.py │ └── texture.png ├── nider ├── __init__.py ├── colors │ ├── __init__.py │ ├── colormap.py │ └── utils.py ├── core.py ├── exceptions.py ├── mixins │ ├── __init__.py │ ├── img_components_mixins.py │ └── text_mixins.py ├── models.py ├── textures │ ├── Sports.png │ ├── asanoha-400px.png │ ├── asfalt.png │ ├── binding_dark.png │ ├── black_paper.png │ ├── black_thread.png │ ├── blackmamba.png │ ├── broken_noise.png │ ├── cartographer.png │ ├── circles-and-roundabouts.png.png │ ├── congruent_outline.png │ ├── congruent_pentagon.png │ ├── cream_dust.png │ ├── crissXcross.png │ ├── crossword.png │ ├── dark_embroidery.png │ ├── dark_geometric.png │ ├── dark_leather.png │ ├── dark_mosaic.png │ ├── dark_wall.png │ ├── dark_wood.png │ ├── debut_dark.png │ ├── denim.png │ ├── diagmonds.png │ ├── dirty_old_shirt.png │ ├── eight_horns.png │ ├── elastoplast.png │ ├── ep_naturalblack.png │ ├── escheresque_ste.png │ ├── extra_clean_paper.png │ ├── foggy_birds.png │ ├── footer_lodyas.png │ ├── fresh_snow.png │ ├── geometry.png │ ├── geometry2.png │ ├── gplaypattern.png │ ├── gray_sand.png │ ├── grey.png │ ├── handmadepaper.png │ ├── ice_age.png │ ├── irongrip.png │ ├── light_wool.png │ ├── lightpaperfibers.png │ ├── navy_blue.png │ ├── old_mathematics.png │ ├── paper_fibers.png │ ├── photography.png │ ├── pink dust.png │ ├── random_grey_variations.png │ ├── redox_01.png │ ├── retina_wood.png │ ├── sakura.png │ ├── sayagata-400px.png │ ├── school.png │ ├── snow.png │ ├── stardust.png │ ├── subtle_white_feathers.png │ ├── swirl_pattern.png │ ├── symphony.png │ ├── tileable_wood_texture.png │ ├── topography.png │ ├── type.png │ ├── use_your_illusion.png │ ├── weather.png │ ├── wood_1.png │ ├── wood_pattern.png │ └── zwartevilt.png ├── tools.py └── utils.py ├── requirements ├── dev.txt ├── prod.txt └── test.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_colors.py ├── test_core.py ├── test_mixins.py ├── test_models.py └── test_utils.py ├── tox.ini └── travis_pypi_setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/images/available_units.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/images/available_units.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/nider.colors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/nider.colors.rst -------------------------------------------------------------------------------- /docs/nider.mixins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/nider.mixins.rst -------------------------------------------------------------------------------- /docs/nider.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/nider.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /examples/add_watermark_example/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/add_watermark_example/bg.jpg -------------------------------------------------------------------------------- /examples/add_watermark_example/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/add_watermark_example/result.jpg -------------------------------------------------------------------------------- /examples/add_watermark_example/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/add_watermark_example/script.py -------------------------------------------------------------------------------- /examples/draw_on_bg_example/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_bg_example/result.png -------------------------------------------------------------------------------- /examples/draw_on_bg_example/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_bg_example/script.py -------------------------------------------------------------------------------- /examples/draw_on_bg_with_watermark_example/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_bg_with_watermark_example/result.png -------------------------------------------------------------------------------- /examples/draw_on_bg_with_watermark_example/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_bg_with_watermark_example/script.py -------------------------------------------------------------------------------- /examples/draw_on_image_example/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_image_example/bg.jpg -------------------------------------------------------------------------------- /examples/draw_on_image_example/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_image_example/result.png -------------------------------------------------------------------------------- /examples/draw_on_image_example/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_image_example/script.py -------------------------------------------------------------------------------- /examples/draw_on_texture_example/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_texture_example/result.png -------------------------------------------------------------------------------- /examples/draw_on_texture_example/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_texture_example/script.py -------------------------------------------------------------------------------- /examples/draw_on_texture_example/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/draw_on_texture_example/texture.png -------------------------------------------------------------------------------- /examples/example1/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example1/bg.jpg -------------------------------------------------------------------------------- /examples/example1/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example1/result.png -------------------------------------------------------------------------------- /examples/example1/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example1/script.py -------------------------------------------------------------------------------- /examples/example2/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example2/bg.jpg -------------------------------------------------------------------------------- /examples/example2/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example2/result.png -------------------------------------------------------------------------------- /examples/example2/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example2/script.py -------------------------------------------------------------------------------- /examples/example3/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example3/bg.png -------------------------------------------------------------------------------- /examples/example3/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example3/result.png -------------------------------------------------------------------------------- /examples/example3/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example3/script.py -------------------------------------------------------------------------------- /examples/example4/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example4/result.png -------------------------------------------------------------------------------- /examples/example4/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example4/script.py -------------------------------------------------------------------------------- /examples/example4/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/examples/example4/texture.png -------------------------------------------------------------------------------- /nider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/__init__.py -------------------------------------------------------------------------------- /nider/colors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/colors/__init__.py -------------------------------------------------------------------------------- /nider/colors/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/colors/colormap.py -------------------------------------------------------------------------------- /nider/colors/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/colors/utils.py -------------------------------------------------------------------------------- /nider/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/core.py -------------------------------------------------------------------------------- /nider/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/exceptions.py -------------------------------------------------------------------------------- /nider/mixins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/mixins/__init__.py -------------------------------------------------------------------------------- /nider/mixins/img_components_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/mixins/img_components_mixins.py -------------------------------------------------------------------------------- /nider/mixins/text_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/mixins/text_mixins.py -------------------------------------------------------------------------------- /nider/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/models.py -------------------------------------------------------------------------------- /nider/textures/Sports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/Sports.png -------------------------------------------------------------------------------- /nider/textures/asanoha-400px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/asanoha-400px.png -------------------------------------------------------------------------------- /nider/textures/asfalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/asfalt.png -------------------------------------------------------------------------------- /nider/textures/binding_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/binding_dark.png -------------------------------------------------------------------------------- /nider/textures/black_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/black_paper.png -------------------------------------------------------------------------------- /nider/textures/black_thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/black_thread.png -------------------------------------------------------------------------------- /nider/textures/blackmamba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/blackmamba.png -------------------------------------------------------------------------------- /nider/textures/broken_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/broken_noise.png -------------------------------------------------------------------------------- /nider/textures/cartographer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/cartographer.png -------------------------------------------------------------------------------- /nider/textures/circles-and-roundabouts.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/circles-and-roundabouts.png.png -------------------------------------------------------------------------------- /nider/textures/congruent_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/congruent_outline.png -------------------------------------------------------------------------------- /nider/textures/congruent_pentagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/congruent_pentagon.png -------------------------------------------------------------------------------- /nider/textures/cream_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/cream_dust.png -------------------------------------------------------------------------------- /nider/textures/crissXcross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/crissXcross.png -------------------------------------------------------------------------------- /nider/textures/crossword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/crossword.png -------------------------------------------------------------------------------- /nider/textures/dark_embroidery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/dark_embroidery.png -------------------------------------------------------------------------------- /nider/textures/dark_geometric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/dark_geometric.png -------------------------------------------------------------------------------- /nider/textures/dark_leather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/dark_leather.png -------------------------------------------------------------------------------- /nider/textures/dark_mosaic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/dark_mosaic.png -------------------------------------------------------------------------------- /nider/textures/dark_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/dark_wall.png -------------------------------------------------------------------------------- /nider/textures/dark_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/dark_wood.png -------------------------------------------------------------------------------- /nider/textures/debut_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/debut_dark.png -------------------------------------------------------------------------------- /nider/textures/denim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/denim.png -------------------------------------------------------------------------------- /nider/textures/diagmonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/diagmonds.png -------------------------------------------------------------------------------- /nider/textures/dirty_old_shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/dirty_old_shirt.png -------------------------------------------------------------------------------- /nider/textures/eight_horns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/eight_horns.png -------------------------------------------------------------------------------- /nider/textures/elastoplast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/elastoplast.png -------------------------------------------------------------------------------- /nider/textures/ep_naturalblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/ep_naturalblack.png -------------------------------------------------------------------------------- /nider/textures/escheresque_ste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/escheresque_ste.png -------------------------------------------------------------------------------- /nider/textures/extra_clean_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/extra_clean_paper.png -------------------------------------------------------------------------------- /nider/textures/foggy_birds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/foggy_birds.png -------------------------------------------------------------------------------- /nider/textures/footer_lodyas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/footer_lodyas.png -------------------------------------------------------------------------------- /nider/textures/fresh_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/fresh_snow.png -------------------------------------------------------------------------------- /nider/textures/geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/geometry.png -------------------------------------------------------------------------------- /nider/textures/geometry2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/geometry2.png -------------------------------------------------------------------------------- /nider/textures/gplaypattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/gplaypattern.png -------------------------------------------------------------------------------- /nider/textures/gray_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/gray_sand.png -------------------------------------------------------------------------------- /nider/textures/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/grey.png -------------------------------------------------------------------------------- /nider/textures/handmadepaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/handmadepaper.png -------------------------------------------------------------------------------- /nider/textures/ice_age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/ice_age.png -------------------------------------------------------------------------------- /nider/textures/irongrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/irongrip.png -------------------------------------------------------------------------------- /nider/textures/light_wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/light_wool.png -------------------------------------------------------------------------------- /nider/textures/lightpaperfibers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/lightpaperfibers.png -------------------------------------------------------------------------------- /nider/textures/navy_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/navy_blue.png -------------------------------------------------------------------------------- /nider/textures/old_mathematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/old_mathematics.png -------------------------------------------------------------------------------- /nider/textures/paper_fibers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/paper_fibers.png -------------------------------------------------------------------------------- /nider/textures/photography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/photography.png -------------------------------------------------------------------------------- /nider/textures/pink dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/pink dust.png -------------------------------------------------------------------------------- /nider/textures/random_grey_variations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/random_grey_variations.png -------------------------------------------------------------------------------- /nider/textures/redox_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/redox_01.png -------------------------------------------------------------------------------- /nider/textures/retina_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/retina_wood.png -------------------------------------------------------------------------------- /nider/textures/sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/sakura.png -------------------------------------------------------------------------------- /nider/textures/sayagata-400px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/sayagata-400px.png -------------------------------------------------------------------------------- /nider/textures/school.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/school.png -------------------------------------------------------------------------------- /nider/textures/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/snow.png -------------------------------------------------------------------------------- /nider/textures/stardust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/stardust.png -------------------------------------------------------------------------------- /nider/textures/subtle_white_feathers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/subtle_white_feathers.png -------------------------------------------------------------------------------- /nider/textures/swirl_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/swirl_pattern.png -------------------------------------------------------------------------------- /nider/textures/symphony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/symphony.png -------------------------------------------------------------------------------- /nider/textures/tileable_wood_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/tileable_wood_texture.png -------------------------------------------------------------------------------- /nider/textures/topography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/topography.png -------------------------------------------------------------------------------- /nider/textures/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/type.png -------------------------------------------------------------------------------- /nider/textures/use_your_illusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/use_your_illusion.png -------------------------------------------------------------------------------- /nider/textures/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/weather.png -------------------------------------------------------------------------------- /nider/textures/wood_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/wood_1.png -------------------------------------------------------------------------------- /nider/textures/wood_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/wood_pattern.png -------------------------------------------------------------------------------- /nider/textures/zwartevilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/textures/zwartevilt.png -------------------------------------------------------------------------------- /nider/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/tools.py -------------------------------------------------------------------------------- /nider/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/nider/utils.py -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- 1 | colorthief==0.2.1 2 | Pillow==7.2.0 3 | -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- 1 | -r prod.txt 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/tests/test_colors.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/tests/test_mixins.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/tox.ini -------------------------------------------------------------------------------- /travis_pypi_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/nider/HEAD/travis_pypi_setup.py --------------------------------------------------------------------------------