Apaturinae

The Apaturinae are a subfamily of butterflies that includes many species commonly called emperors.

Apaturinae
Asterocampa celtis
Scientific classification
Kingdom: Animalia
Phylum: Arthropoda
Class: Insecta
Order: Lepidoptera
Family: Nymphalidae
Subfamily: Apaturinae

Apaturinae consists of 20 genera and shows separate distributions and uncommon host–plant associations. Most genera of this subfamily are found throughout South-East Asia and Africa, whereas the genera Doxocopa and Asterocampa are spread mainly in South America and North America.[1]

Genera

gollark: allegedly.
gollark: Yes, wojbie, that's actual live code (with some bits removed to make it fit), not an example.
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```

References

  1. Ohshima, I., Tanikawa-Dodo, Y., Saigusa, T., Nishiyama, T., Kitani, M., Hasebe, M., & Mohri, H. (2010). Phylogeny, biogeography, and host–plant association in the subfamily Apaturinae (Insecta: Lepidoptera: Nymphalidae) inferred from eight nuclear and seven mitochondrial genes. Molecular Phylogenetics and Evolution, 57(3), 1026-1036. doi:10.1016/j.ympev.2010.09.018


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.