ios-factor / ios-factor.com

A methodology for building high-quality iOS apps on a solid architecture
https://ios-factor.com
MIT License
475 stars 39 forks source link

Idea for update on Depencies article: python dependencies #23

Open augustorsouza opened 6 years ago

augustorsouza commented 6 years ago

Just like Ruby, Python can be used for tooling iOS apps. To have instructions regarding this subject would be great!

Python is a great language for checking project consistency as a build phase. For example, at my work we use Python to write a script that we run as a build phase before compiling the code to check if there are assets in storyboards not present in xcassets.

Our setup for python dependencies uses pipenv . This allows us to work with the same version of python and install its dependencies easily, similar to ruby bundler.

KrauseFx commented 6 years ago

Sounds good, do you want to submit a PR for this? What are some commonly used iOS tools written in Python?

augustorsouza commented 6 years ago

Great! I will make a PR after I research a little in the internet regarding these iOS tools written in Python. To be sincere we only use xUnique and some self made scripts. It is great for self made scripts.

augustorsouza commented 6 years ago

pull request #26 submitted 👍