This week's book giveaway is in the Java in General forum.
We're giving away four copies of Helidon Revealed: A Practical Guide to Oracle’s Microservices Framework and have Michael Redlich on-line!
See this thread for details.
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Automate boring stuff using Python: Other than automating ?

 
Ranch Hand
Posts: 399
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What are the other practical tasks for which Python can be used other than automating ?

Thanks
Ayub
 
Ranch Hand
Posts: 471
Mac OS X Hibernate Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can do anything with python, starting from small automation scripts, up to fully fledged web apps.
 
Bartender
Posts: 2407
36
Scala Python Oracle Postgres Database Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Python is popular in data science, because it has excellent scientific and analytical libraries such as Pandas, and the IPython Notebook browser-based interface is great for ad hoc data exploration.

Python is also supported by the powerful Apache Spark platform for distributed data processing, which is being seen as an alternative to Hadoop for Big Data applications.

You really can do pretty much anything you want in Python.
 
Author
Posts: 31
5
Python
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As others have said, Python is a good general purpose language. Django (and other frameworks) makes it good for web apps. Pandas and numpy/scipy make it good for science and number crunching. It's clean syntax and standard library make it good for general scripting and sysadmin work. Celery, Fabric, Chef, etc. make it good for devops.

Python seems to lack in the gaming area, though there are professional games written in Python: http://inventwithpython.com/blog/2013/02/19/what-professional-games-use-pygame/

I know "Python can do anything" is vague (and true of all languages), but because it has a simple syntax Python is a great tool for any problem. It's the reason I write all my programming-for-complete-beginners books using Python.
 
Let nothing stop you! Not even this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic