Address#

class edgar_sec.objects.Address(address_type, street1, street2, city, state_or_country, zipcode, state_or_country_description, is_foreign_location, foreign_state_territory=None, country=None, country_code=None)[source]#

Bases: object

A class representing an address from SEC filing data.

Parameters:
  • address_type (str)

  • street1 (str)

  • street2 (str)

  • city (str)

  • state_or_country (str)

  • zipcode (str)

  • state_or_country_description (str)

  • is_foreign_location (bool)

  • foreign_state_territory (str | None)

  • country (str | None)

  • country_code (str | None)

Methods#

Address.__init__

Address.to_object

Parses a dictionary and returns an Address object.

Address.to_object_async

Asynchronously parses a dictionary and returns an Address object.

Attributes#