Skip to content
View lanihurley's full-sized avatar
Block or Report

Block or report lanihurley

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. recursiveFibonacciSequence recursiveFibonacciSequence Public

    Python program demonstrates the Fibonacci sequence using a recursive function. Uses Fibonacci sequence rule to calculate: Xn = Xn−1 + Xn−2

    Python

  2. SEOInternalLinkScraperGraph SEOInternalLinkScraperGraph Public

    Python program that visually displays internal links of webpages in spring graph with nodes. *Must import multiple Python packages and install chromedriver.

    Python

  3. fibonacciSequence fibonacciSequence Public

    Python program takes user input and displays the Fibonacci sequence starting from 0 up to nth-term desired.

    Python

  4. SEOWebpageScraperGUI SEOWebpageScraperGUI Public

    This Python program is an SEO GUI tool that scrapes links: "a" and "href", images: "alt" text and "src" from webpage, and metatitle keywords. * Must have breezypythongui.py file in same directory. …

    Python

  5. fizzBuzz fizzBuzz Public

    Python program is a simple FizzBuzz Game: Program prints each number from 1 to 100 in turn. When the number is divisible by 3 then instead of printing the number it prints 'Fizz'. When the number i…

    Python

  6. gaussSumRange gaussSumRange Public

    Simple Python example of using a loop independent of a list. Program uses for() loop to iterate and add all the numbers in range().

    Python