easydata-api 1.1.0__tar.gz → 1.2.0__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.
- {easydata_api-1.1.0 → easydata_api-1.2.0}/PKG-INFO +3 -2
- {easydata_api-1.1.0 → easydata_api-1.2.0}/README.md +2 -1
- {easydata_api-1.1.0 → easydata_api-1.2.0}/easydata_api/client.py +2 -1
- {easydata_api-1.1.0 → easydata_api-1.2.0}/easydata_api.egg-info/PKG-INFO +3 -2
- {easydata_api-1.1.0 → easydata_api-1.2.0}/pyproject.toml +1 -1
- {easydata_api-1.1.0 → easydata_api-1.2.0}/LICENSE +0 -0
- {easydata_api-1.1.0 → easydata_api-1.2.0}/easydata_api/__init__.py +0 -0
- {easydata_api-1.1.0 → easydata_api-1.2.0}/easydata_api/errors.py +0 -0
- {easydata_api-1.1.0 → easydata_api-1.2.0}/easydata_api/webhooks.py +0 -0
- {easydata_api-1.1.0 → easydata_api-1.2.0}/easydata_api.egg-info/SOURCES.txt +0 -0
- {easydata_api-1.1.0 → easydata_api-1.2.0}/easydata_api.egg-info/dependency_links.txt +0 -0
- {easydata_api-1.1.0 → easydata_api-1.2.0}/easydata_api.egg-info/requires.txt +0 -0
- {easydata_api-1.1.0 → easydata_api-1.2.0}/easydata_api.egg-info/top_level.txt +0 -0
- {easydata_api-1.1.0 → easydata_api-1.2.0}/setup.cfg +0 -0
- {easydata_api-1.1.0 → easydata_api-1.2.0}/tests/test_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: easydata-api
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Official Python client for the EasyData LinkedIn enrichment API
|
|
5
5
|
Author-email: EasyData Development <dev@easydata.win>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -193,7 +193,8 @@ ed.usage(from_="2026-09-01", to="2026-09-30") # spend by day and operation
|
|
|
193
193
|
|
|
194
194
|
Operations are attributes: `profiles_enrich`, `profiles_activity`,
|
|
195
195
|
`profiles_posts`, `profiles_comments`, `profiles_reactions`, `companies_enrich`,
|
|
196
|
-
`posts_enrich`, `sales_search_people`, `
|
|
196
|
+
`posts_enrich`, `sales_search_people`, `sales_search_employees`,
|
|
197
|
+
`sales_search_companies`.
|
|
197
198
|
|
|
198
199
|
## Reference
|
|
199
200
|
|
|
@@ -172,7 +172,8 @@ ed.usage(from_="2026-09-01", to="2026-09-30") # spend by day and operation
|
|
|
172
172
|
|
|
173
173
|
Operations are attributes: `profiles_enrich`, `profiles_activity`,
|
|
174
174
|
`profiles_posts`, `profiles_comments`, `profiles_reactions`, `companies_enrich`,
|
|
175
|
-
`posts_enrich`, `sales_search_people`, `
|
|
175
|
+
`posts_enrich`, `sales_search_people`, `sales_search_employees`,
|
|
176
|
+
`sales_search_companies`.
|
|
176
177
|
|
|
177
178
|
## Reference
|
|
178
179
|
|
|
@@ -35,7 +35,7 @@ __all__ = [
|
|
|
35
35
|
DEFAULT_BASE_URL = "https://api.easydata.win/v1"
|
|
36
36
|
|
|
37
37
|
#: Every operation, as `attribute name -> path`. The client builds one method
|
|
38
|
-
#: per entry rather than defining
|
|
38
|
+
#: per entry rather than defining ten near-identical methods, because they ARE
|
|
39
39
|
#: identical: one request shape, one response shape, and the operation is the
|
|
40
40
|
#: path. A new operation is a row here.
|
|
41
41
|
OPERATIONS: dict[str, str] = {
|
|
@@ -47,6 +47,7 @@ OPERATIONS: dict[str, str] = {
|
|
|
47
47
|
"companies_enrich": "/companies/enrich",
|
|
48
48
|
"posts_enrich": "/posts/enrich",
|
|
49
49
|
"sales_search_people": "/sales/search/people",
|
|
50
|
+
"sales_search_employees": "/sales/search/employees",
|
|
50
51
|
"sales_search_companies": "/sales/search/companies",
|
|
51
52
|
}
|
|
52
53
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: easydata-api
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Official Python client for the EasyData LinkedIn enrichment API
|
|
5
5
|
Author-email: EasyData Development <dev@easydata.win>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -193,7 +193,8 @@ ed.usage(from_="2026-09-01", to="2026-09-30") # spend by day and operation
|
|
|
193
193
|
|
|
194
194
|
Operations are attributes: `profiles_enrich`, `profiles_activity`,
|
|
195
195
|
`profiles_posts`, `profiles_comments`, `profiles_reactions`, `companies_enrich`,
|
|
196
|
-
`posts_enrich`, `sales_search_people`, `
|
|
196
|
+
`posts_enrich`, `sales_search_people`, `sales_search_employees`,
|
|
197
|
+
`sales_search_companies`.
|
|
197
198
|
|
|
198
199
|
## Reference
|
|
199
200
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|