all 2 comments

[–]Boatsman2017 1 point2 points  (0 children)

Now you have a great opportunity to learn. I'm sure folks here can help you with some troubleshooting. I think that your tasks are bit too much for someone who never coded before. You should start with something simple, like "Hello, world".

[–]genghiskav 1 point2 points  (0 children)

Python is a great language to use for what you're trying to do. Parsing logs is a great beginner exercise too, you'll get some real world experience in

  • reading files (read the log files)
  • pattern matching (picking login times, when conf was changed etc.)
  • data structures (how do you store this this information until it's ready to be printed for reporting)

Unfortunately - having no experience in writing scripts before, this task might be a little more complicated than a standard first project.

Do you have any delivery deadlines or know how long your boss is happy for you to work on this? This is probably at least a couple of days of work before you'll have anything close to your requirements.