====== Python ====== | [[.:machine learning]] | [[.:code snippets]] | [[.:python:Links and blogs|Links and blogs]] | | [[.:Django]] | ===== Frameworks / Tools / Links===== * [[https://www.twistedmatrix.com|twisted]] (Has issue executing on same dir) * [[https://twistedmatrix.com/documents/current/core/howto/systemd.html|Deployment Systemd]] * [[http://www.tornadoweb.org/|tornado]] * [[http://flask.pocoo.org/| Flask]] * [[https://www.djangoproject.com/| DJango]] * [[https://trypyramid.com/|Pyramid]] * [[http://www.turbogears.org/|Turbo Gears]] * [[http://www.tdda.info/|Test-Driven Data Analysis]] * [[https://github.com/TomAugspurger/engarde|package for defensive data analysis]] * [[https://github.com/alecthomas/voluptuous|data validation library]] * [[https://activewizards.com/blog/top-20-python-libraries-for-data-science-in-2018/|Top 20 Python libraries for data science in 2018]] * [[https://heartbeat.fritz.ai/top-7-libraries-and-packages-of-the-year-for-data-science-and-ai-python-r-6b7cca2bf000|2018’s Top 7 Libraries and Packages for Data Science and AI: Python & R]] * [[https://pypi.org/project/polyglot/|Polyglot NLP]] ===== Headline ===== # Install virtualenv pip install virtualenv # Use virtualenv cd my_project_folder virtualenv venv #or virtualenv -p /usr/bin/python2.7 venv #or virtualenv -p /usr/bin/python3 venv source venv/bin/activate # Save requirements pip freeze > requirements.txt # Install requirements pip install -r requirements.txt http://docs.python-guide.org/en/latest/dev/virtualenvs/ http://docs.python-guide.org/en/latest/scenarios/admin/ http://stackoverflow.com/questions/3189138/is-it-possible-to-write-a-firewall-in-python http://pylibpcap.sourceforge.net/ https://twistedmatrix.com/documents/15.0.0/names/howto/custom-server.html http://libcloud.apache.org