-
Continue reading →: NASA NEO V2 (Python)Version 2 of my NEO Python program. Turned out that getting data out of a JSON with nested listed/dictionaries was not so easy but I’m getting there! ——— #!/bin/python3 #geektechstuff #NASA NEO #Big thanks to NASA API (https://api.nasa.gov/api.html), get your API key from this site. import json, requests #variables api=””…
-
Continue reading →: NASA NEO V1 (Python)My last few Python projects have been utilising Python reading JSON (JavaScript Object Notation) files and accessing online resources. Looking for a new challenge I did a quick Google search for publicly available JSON files and (in my opinion) found the ultimate files to play with – files from NASA.…
-
Continue reading →: Where is the International Space Station? (Python)Now that I know how to use images in Python I’ve tackled the “Where is the space station?” lesson of Code Club projects as a) I will be teaching the lesson at some point and its always good to practise the lesson before teaching it and b) I want to…
-
Continue reading →: Python using Turtle to show imagesI’ve been puzzling how to use images in a Python script since yesterdays “Scissor, Paper, Stone” game. I don’t like “Googling” for an answer straight away when I’m working on personal projects and instead bounced through a few ideas before I clicked that turtle could be used to display an…
-
Continue reading →: Scissor, Paper, Stone…but with Pokemon!This week at Code Club I taught Python Lesson 2 (Scissors, Paper, Stone) . When I got home I showed my son (who is a massive Pokemon fan) how the lesson can be expanded to make a slightly more complicated version that included names and the option to keep playing with…
-
Continue reading →: Github
Just a heads up that I am going to also post my code/programming/scripts onto Github. Who knows, I might also get to help out on other people’s code/programming/scripts…. My Github page can be found at: https://github.com/geektechdude
-
Continue reading →: Caesar Cipher (Python)I’m having a play in Python today and looking at the Caesar Cipher. The Caesar Cipher (Caesar Shift, Caesar’s Code) is a simple, easy to implement substitution cipher. The cipher is named after Julius Caesar. The cipher works by taking the letters of the message and then shifts the letter…
-
Continue reading →: Amazon Price Checker (Part 3)Version 3 of my Amazon.co.uk price checker utilises the JSON (JavaScript Object Notation) module so that JSON files can be used by Python. I’ve stored the ASIN (Amazon IDs) of the Amazon products that I want to check the price of in a JSON file (called amazlist.json) and Python now…
-
Continue reading →: Amazon.co.uk Price Checker (Part 2)Building on my price checker (see part 1) I’ve now added in an option asking how much spends (a.k.a pocket money) is available and allowing for the end user to enter multiple ASINs before the program checks the prices. Next step; storing the ASINs in/reading the ASINs from a file…
-
Continue reading →: Amazon.co.uk Price Checker (Part 1)One of my daily non-work related tasks is checking the prices of products from Amazon.co.uk that family members of myself are after at a cheap price. This is generally accomplished by either loading up the Amazon.co.uk individual product pages or adding all the items to an Amazon wishlist and loading…


