Tag: python
-
Python Developer — 12+ Months Contract — Remote – Lorven Technologies, Inc. – Remote
Lorven Technologies, Inc. Remote $DOE Full Time, Accepts corp to corp applications, Contract: W2, Month Contract Skills NOSQL Python GraphQL Job Description Role: Python Developer Location: Remote (CST/EST) Duration: 1+ Year Contract Top Skill sets: Senior Level Python Developer (8-10+) GraphQL is a must. NoSQL databases Client Note: Will be working with UI but not…
-
Python Developer – GraphQL, Python – Only W2 – FocuzMindz – Remote
FocuzMindz Remote Depends on Experience Contract: W2, 12 Month(s) No Travel Required Skills GraphQL Python Job Description Proficiency in GraphQL Proficiency in Python https://www.dice.com/job-detail/6bd3f024-e9cf-49b4-abbd-b7232418d4b9
-
Facebook Ads API Insights: Not receiving `dda_results` in Ads Insights API response
0 I am using the Facebook Ads API to pull Ads Insights data for my campaigns. I am trying to include dda_results in the data I fetch, which according to the Facebook documentation should contain "Estimated incremental conversions caused by a given ad". Here’s the API query I am using: https://graph.facebook.com/v18.0/act_XXXX/insights?level=ad&fields=campaign_name,campaign_id,adset_name,adset_id,ad_name,ad_id,clicks,reach,impressions,objective,spend,inline_link_clicks,dda_results&limit=500&time_increment=1&access_token=XXXX&time_range[since]=2023-09-10&time_range[until]=2023-09-21 The API returns the…
-
Technical Writer – Cerebral Technologies – Miami, FL
Cerebral Technologies Miami, FL Depends on Experience Contract: Independent, W2, 12 Month(s) Skills Technical Writer SQL Java GraphQL Python Job Description Role: Technical Writer Work Location: Miami Area, FL Job Description- Ability to write in one or more basic programming language (SQL, Java, GraphQL, Python) Strong analytical skills with ability to understand complex system enterprise…
-
Spark/Python Developer – Hexaware Technologies, Inc – Mc Lean, VA
Hexaware Technologies, Inc Mc Lean, VA Depends on Experience Full Time Skills AWS Python Spark Rest AMQ GraphQL. Mongo Job Description I am from Hexaware Technologies Inc () part of Carlyle Group (). Hexaware is a $1.2B company with about 25K employees worldwide. The position is a direct hire for Hexaware. As discussed, sharing you…
-
Technical Writer – Apolis – Miami, FL
Apolis Miami, FL Depends on Experience Accepts corp to corp applications, Contract: W2, 12 Month(s) No Travel Required Skills Technical Writer sql java python GraphQL salesforce Job Description Role: Technical Writer Location: Miami Area, FL Duration: 12+ months Job Description: Ability to write in one or more basic programming language (SQL, Java, GraphQL, Python)…
-
Mutation for nested object
15 I’m trying to implement GraphQL mutation for a "complex" object. Let’s say we have a Contact with three fields: firstName, lastName and address, which is object with one field street: Here is my python scheme implementation: class Address(graphene.ObjectType): street = graphene.String(description=’Street Name’) class AddressInput(graphene.InputObjectType): street = graphene.String(description=’Street Name’, required=True) class Contact(graphene.ObjectType): first_name = graphene.String(description=’First…
-
Multi-looping with gitlab Graphql API
0 Im trying to get list of all the pipelines and all the jobs from Gitlab that ran in a day using graphql API, Here is the query I have query = """ query($projectPath: ID!, $pipelineCursor: String, $jobCursor: String) { project(fullPath: $projectPath) { pipelines(updatedAfter:"2023-09-06T00:00:00Z",updatedBefore:"2023-09-06T23:59:59Z",status:SUCCESS,first: 100,after: $pipelineCursor,source:"pipeline") { pageInfo{ hasNextPage endCursor } count nodes { jobs(first:…
-
How to stream file upload using python gql client for GraphQL
0 I am using python gql client to upload files using GraphQL request as below: https://gql.readthedocs.io/en/latest/usage/file_upload.html I am using asynchronous transport transport = AIOHTTPTransport(url=’YOUR_URL’) async with Client(transport=transport) as client: query = gql(”’ mutation singleUpload($file: Upload!) { singleUpload(file: $file) { id } } ”’) async def file_sender(file_name): async with aiofiles.open(file_name, ‘rb’) as f: chunk = await…
-
Python / asyncio: How to test GraphQL subscriptions?
0 I have created a GraphQL API on AWS AppSync and I need to run tests to verify things work as expected. I have implemented a command line API client in Python with gql to interact with the API: I can run queries ✅ I can run mutations ✅ I can start a subscription, run…