form4api 0.3.0__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: form4api
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Python client for the Form4API — real-time SEC Form 4 insider trading data
5
5
  License-Expression: MIT
6
6
  Project-URL: Homepage, https://form4api.com
@@ -47,6 +47,9 @@ class Company:
47
47
  exchange: str | None
48
48
  total_filings: int
49
49
  active_insiders: int
50
+ sic_description: str | None
51
+ state_of_incorporation: str | None
52
+ website: str | None
50
53
 
51
54
 
52
55
  @dataclass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: form4api
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Python client for the Form4API — real-time SEC Form 4 insider trading data
5
5
  License-Expression: MIT
6
6
  Project-URL: Homepage, https://form4api.com
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "form4api"
7
- version = "0.3.0"
7
+ version = "0.3.1"
8
8
  description = "Python client for the Form4API — real-time SEC Form 4 insider trading data"
9
9
  requires-python = ">=3.11"
10
10
  dependencies = ["httpx>=0.27"]
@@ -59,6 +59,9 @@ COMPANY = {
59
59
  "exchange": "NASDAQ",
60
60
  "totalFilings": 100,
61
61
  "activeInsiders": 12,
62
+ "sicDescription": "Electronic Computers",
63
+ "stateOfIncorporation": "CA",
64
+ "website": None,
62
65
  }
63
66
 
64
67
  SIGNAL = {
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes