Welcome to my Website!

This is a paragraph! Here's how you make a link: Neocities.

Here's how you can make bold and italic text.

Here's how you can add an image:

Site hosted by Neocities

Here's how to make a list:

To learn more HTML/CSS, check out these tutorials!

''' recursive directory upload, adapted from https://github.com/neoslaughter/python-neo ''' files = glob(d + '/**', recursive=True) for file_name in files: if os.path.splitext(file_name)[1] in file_extensions: destination_path = file_name.replace(LOCAL_DIRECTORY,'').replace("\\","/") nc.upload((file_name, destination_path)) print("Uploaded {} as {}".format(file_name, destination_path)) nc = neocities.NeoCities(USERNAME, PASSWORD) push(LOCAL_DIRECTORY)