new-site/scripts/formation/states/wy/config.py
justin f8cd37ac8c Initial commit — Performance West telecom compliance platform
Includes: API (Express/TypeScript), Astro site, Python workers,
document generators, FCC compliance tools, Canada CRTC formation,
Ansible infrastructure, and deployment scripts.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-27 06:54:22 -05:00

52 lines
2.2 KiB
Python

"""Wyoming — Secretary of State portal configuration."""
CONFIG = {
"state_code": "WY",
"state_name": "Wyoming",
"sos_name": "Wyoming Secretary of State",
"portal_name": "WyoBiz",
"portal_url": "https://wyobiz.wyo.gov/Business/Default.aspx",
"name_search_url": "https://wyobiz.wyo.gov/Business/FilingSearch.aspx",
"filing_url": "https://wyobiz.wyo.gov/Business/Default.aspx",
"search_method": "playwright",
# NW Registered Agent address in Wyoming
"nwra_name": "Northwest Registered Agent LLC",
"nwra_address": "1712 Pioneer Ave Ste 500",
"nwra_city": "Cheyenne",
"nwra_state": "WY",
"nwra_zip": "82001",
# State fees (dollars)
"llc_formation_fee": 100,
"corp_formation_fee": 100,
"expedited_fee": 100,
"expedited_label": "same-day",
"annual_report_fee": 60,
"annual_report_notes": "Based on assets in WY; $60 minimum",
# Verified CSS selectors from WyoBiz portal (confirmed 2026-03-19)
"selectors": {
# Name search page (FilingSearch.aspx)
"name_search_input": "#MainContent_txtFilingName",
"name_search_starts_with": "#MainContent_chkSearchStartWith",
"name_search_contains": "#MainContent_chkSearchIncludes",
"filing_id_input": "#MainContent_txtFilingID",
"name_search_submit": "#MainContent_cmdSearch",
"name_results_area": "#scrolltop",
"loading_indicator": "#MainContent_UpdateProgress2",
# Filing form selectors (need portal inspection during active filing session)
"llc_name_field": "",
"llc_agent_name_field": "",
"llc_agent_address_field": "",
"llc_principal_address_field": "",
"llc_organizer_name_field": "",
"llc_management_type_select": "",
"llc_purpose_field": "",
"llc_submit_button": "",
"corp_name_field": "",
"corp_agent_name_field": "",
"corp_shares_field": "",
"corp_submit_button": "",
},
"notes": "No state income tax. Privacy-friendly — no member/manager names on public filings. "
"Fast processing (1-2 business days). Commercial Registered Agent (CRA) program available. "
"WyoBiz uses ASP.NET WebForms with __VIEWSTATE — postbacks required for search.",
}