Python refactoring libraryJobb

Filter

Mina senaste sökningar
Filtrera:
Budget
till
till
till
Typ
Kompetens
Språk
    Jobbstat
    2,000 python refactoring library jobb har hittats, med prissättning USD

    Hej, Jag har en idé om en multiplayer sudoku spelapp. Jag har fått offerter på 25000 usd för att utveckla spelet men jag vill inte satsa dessa pengar. Jag vill istället skapa spelet själv, men saknar kompetens att göra det. Jag har erfarenhet av programmering i Python, men inte spel. Jag vill ha någon som sätter upp en arbetsplan, där varje steg beskrivs, därefter ger mig viss guidning för att komma genom varje steg. Jag vill alltså både utveckla spelet och lära mig att utveckla själv. Jag behöver någon med erfarenhet av att utveckla multiplayer-spel (design kommer vara relativt enkel) för iphone/android. Dessutom villig att lära ut (skicka länkar/tips på litte...

    $17 / hr (Avg Bid)
    $17 / hr Snittbud
    2 bud
    Project for Raja S. Avslutades left

    Hej, har ett pågående projekt. Vi har kört fast så skulle behöva ett andra öga på projektet. Innefattar python, flask, webscraping.

    $45 / hr (Avg Bid)
    $45 / hr Snittbud
    1 bud

    ...x 448px tall Page Background 1438px wide x 810px tall This should be ambient so as not to compete with the content on the page, so try to avoid high-contrast images or images with lots of text. A template will automatically be applied to your uploaded file, which will tint it blue and fade out the edges. Library Capsule 600px wide x 900px tall Library Hero 3840px wide x 1240px tall Image-rich, no texts and stuff. Library Logo 1280px wide x 720px tall Note for Library Hero and Library Logo: The hero graphic and logo are layered and move independently when the page is scrolled, creating a subtle parallax effect. Consider how the product logo will be placed on top of the hero image (left bottom corner or centered). You'll want to ensure the logo...

    $250 (Avg Bid)
    $250 Snittbud
    1 bud

    Uppgiften är att bygga en slumpgenerator i programmeringsspråket python i miljön google colab. Slumpgenreatorn ska kunna läsa in information(i det här fallet namn ifrån ett google spreadsheet och slumpa ut dem här namnen i basgrupper(6 basgrupper, 6 i varje grupp, där vissa grupper blir färre personer) i spreadsheatet. Så alla basgrupperna och elever får bra placeringar. progrmmaet ska och kunna t.e.x slumpa om placeringar och basgrupper i klassrummet om man vill det. Jag kanske inte har förklarat uppgiften så väl, så jag kan enkelt bara dela instruktionerna där allting är väl skrivet så ni får en ökad förståelse för uppgiften.

    $248 (Avg Bid)
    $248 Snittbud
    2 bud

    Hemsida ska ta in en del information från användare och spara de i databas. I hemsidan kan man se hela tabellen i databasen och kan ändra om man vill. Man kan även lägga in nya rekord i databasen. I python programmet som jobbar på bakgrunden skulle jag kunna läsa in de värdena från databasen och föra till en algorithm som är också skriven i python.

    $181 (Avg Bid)
    $181 Snittbud
    2 bud

    Jag jobbar med att sälja plåt och vi skickar certifikat till våra kunder på stålet, jag skulle vilja ha en portal där de kan söka efter certifikatet och ladda ner pdf filen på egen hand. Se länk nedan på liknande lösning. Jag vill kunna lägga upp pdf filerna antingne på onedrive eller köra ftp mot en server. Vi har redan en server som kör lite python grejer så den kan säkert användas för att placera detta i. Vår hemsida är och den är byggd med wordpress.

    $1097 (Avg Bid)
    $1097 Snittbud
    9 bud

    ITSM Delivery söker Integrationsutvecklare för vår kund. Krav: Java Scala Python R Biztalk Erfarenhet av IBM MQ-server och Biztalk som meddelandesystem att integrera till. Erfarenhet av att bygga near-realtime-instrumentpaneler för att stödja affärsverksamheten. Målet är att använda Spark streaming. Erfarenhet - 6 år. Start: augusti, 2019 Ort: Stockholm / Solna Vi erbjuder: Mycket kreativ och dynamisk miljö, vilket ger en hälsosam professionell utmaning till proffs. Långsiktiga projekt och mysig atmosfär. Det här är ett heltidsjobb i Stockholm, ingen frilansmöjlighet. Ta gärna kontakt med mig för mer information.

    $53 / hr (Avg Bid)
    $53 / hr Snittbud
    3 bud
    Uppehåll av hemsida Avslutades left

    Hjälp med kontroll av hemsida. Program som används. MongoDB SailsJS Elastic Search Python MVC - generellt API

    $402 (Avg Bid)
    $402 Snittbud
    2 bud

    sKils: -Docker Hub -Git -Python -Django -AWS -Redis -S3 -NodeJS -Go

    $17 (Avg Bid)
    $17 Snittbud
    9 bud
    Web development Avslutades left

    Jag vill fixa till en webbsida Pandas Python django

    $555 (Avg Bid)
    $555 Snittbud
    1 bud
    Software in Python Avslutades left

    Good programming skills

    $30 (Avg Bid)
    $30 Snittbud
    1 bud
    Programmering i Python Avslutades left

    Hej, Kolla bifogade filer för ytterligare information! Mvh t1f0

    $50 - $50
    $50 - $50
    0 bud

    Hej, har du möjlighet att hjälpa mig med tre deluppgifter i Python? Ämnet är, som nämns i rubriken, sortering och sökning. Deadline fredag 8.5.2015 kl. 22:00 Information om projektet finns bifogat som filer. Med vänlig hälsning, t1f0

    $30 - $30
    $30 - $30
    0 bud
    Vigenerechiffer Python Avslutades left

    Uppgift 1: Din uppgift är nu att skapa ett program med vilket du kan kryptera och dekryptera text som endast innehåller stora bokstäver enligt Vigenere-algoritmen. För att göra det behöver du en tabell, som du t.ex. kan generera med följande funktion: def make_cipher(): cipher = [] i = 0 j = 0 # Väljer bokstäverna A-Z for char in [:26]: ([i:26]+[:j]) i += 1 j += 1 return cipher Förutom funktionen make_cipher behöver du igen två funktioner för att kryptera resp. dekryptera ett meddelande. def encrypt(key, msg): cipher = make_cipher() # ...mer kod def decrypt(key, msg): cipher = make_cipher() # ...mer kod Uppgift 2: Testa programmet med exemplet på ...

    $15 (Avg Bid)
    $15 Snittbud
    1 bud

    for och sekvenser (python) 1) Skriv ett program som tar hand om röstberäkningen i ett val. Kandidaterna numreras 2-7, och vi lagrar varje kandidats sammanlagda röstantal i en lista (rösterna för nr. 2 ska lagras i position 2, rösterna för nr. 3 i position 3 etc). Tänk noga på hur stor lista du behöver! Varje element ska 0-ställas innan man börjar mata in de enskilda rösterna (ingen valfusk här!). För övningens skull antar vi att antalet röstberättigade är 10 personer, av vilka alla röstar (men de kan rösta blankt eller ge proteströster, så varje given röst måste kontrolleras!). Sist ska varje kandidats röstantal skrivas ut 2) För att göra r...

    $15 - $15
    $15 - $15
    0 bud

    hej jag en kurs programmering( python ) som är databaserad och behöver hjälp med. Det är för nybörjare . Pris kan vi komma överens om . hör av dig så fort som möjligt Med vänlig hälsning,

    $155 (Avg Bid)
    $155 Snittbud
    1 bud
    Programkurs att göra Avslutades left

    hej jag en kurs programmering( python ) som är databaserad och behöver hjälp med. Det är för nybörjare . Pris kan vi komma överens om . hör av dig så fort som möjligt Med vänlig hälsning,

    $150 (Avg Bid)
    $150 Snittbud
    1 bud
    uppgift python Avslutades left

    olika delmoment: Kodskelett Innan programmet skrivs ska en specifikation i form av ett kodskelett lämnas in. Syftet är att du ska tänka igenom problemet innan du försöker lösa det. Prototyp När ditt kodskelett har blivit godkänt så är det dags att börja arbeta med en prototyp av programmet. En prototyp är en första körbar version av programmet som innehåller den mest grundläggande funktionaliteten. Syftet med att lämna in en prototyp är att vi ska kunna ge tips och råd om förbättringar och ändringar redan innan programmet är helt klart. Beskrivning av upgiften: Varudeklaration: Filhantering. Str¨anghantering. Hantering av datastrukturer samt s¨ok...

    $27 (Avg Bid)
    $27 Snittbud
    2 bud
    Skriv lite programvara Avslutades left

    Programmeringsspråk: Openwrt (ev. kan Python vara möjligt) Plattform: Carambola2 Applikation: Vid power-on ska enheten kolla GPIO pinnar, koppla upp mot ett av några förutbestämda WiFi-nät och skicka ett e-post och sedan göra sig beredd på power-down. Slutapplikationen är olika, men enkla och ska helst kunna skrivas i ett ANSI-C program som kallar på det som beskrevs ovan, Alternativt en kort intensivkurs att programmera slutapplikationen i Openwrt. WiFi inställningar, e-postadress, e-posstmeddelande och ev. övriga inställningar ska kunna konfigureras via t.ex. USB från en PC (Teraterm duger). Om möjligt vore det bra att kunna ändra dessa inställningar genom att t.ex. skicka e...

    $29 - $245
    $29 - $245
    0 bud

    Jag har pågående arbete relaterat till vårat tidigare projektpython programming'

    $20 / hr (Avg Bid)
    $20 / hr Snittbud
    1 bud
    uppgift python Avslutades left

    olika delmoment: Kodskelett Innan programmet skrivs ska en specifikation i form av ett kodskelett lämnas in. Syftet är att du ska tänka igenom problemet innan du försöker lösa det. Prototyp När ditt kodskelett har blivit godkänt så är det dags att börja arbeta med en prototyp av programmet. En prototyp är en första körbar version av programmet som innehåller den mest grundläggande funktionaliteten. Syftet med att lämna in en prototyp är att vi ska kunna ge tips och råd om förbättringar och ändringar redan innan programmet är helt klart. Beskrivning av upgiften: Varudeklaration: Filhantering. Str¨anghantering. Hantering av datastrukturer samt s¨ok...

    $138 (Avg Bid)
    $138 Snittbud
    1 bud

    I'm seeking a Django and Python Fullstack developer who can lend their expertise to my application project. The chosen freelancer should excel in creating: - Robust user authentication and authorization systems - Seamless database integration - Responsive design that adapt to various devices I have certain design ideas but I would highly appreciate guidance to help realize these concepts. The freelancer should possess a strong grasp of user-centric design and prove instrumental in translating these concepts into a streamlined, functional, and easy-to-use interface. Ideal skills: Python, Django, Database Management, User Interface Design, User Experience Design, and Responsive Web Design. It's a bonus if the candidate has a knack for making technical functionalit...

    $492 (Avg Bid)
    $492 Snittbud
    25 bud

    I'm currently seeking a proficient freelancer in Google Cloud Platform (GCP) who specializes in Infrastructure setup, Virtual Machine manageme...setup, Virtual Machine management, and Data storage and management. Key Tasks: -Setting up a secure and efficient GCP Infrastructure -Managing and optimizing Virtual Machines -Handling Data storage and management effectively The freelancer needs to have: -Sound knowledge and experience in GCP -The ability to implement advanced automation in GCP Programming Skills: -High-level proficiency in Python -Competency in Shell scripting is necessary This project is for those who are passionate about cloud technologies and eager to help initiate an advanced level of automation within my GCP environment. Please, only those with the relevan...

    $518 (Avg Bid)
    $518 Snittbud
    6 bud

    I'm looking for a Python expert who can help me preprocess and normalize a CSV dataset for a machine learning project. Key Responsibilities: - Loading the CSV dataset - Adjusting timestamps - Merging data from a single file - Normalizing the data using Min-Max scaling Ideal Skills and Experience: - Proficient in Python programming - Solid understanding of data preprocessing techniques - Experience with handling and merging large datasets - Familiarity with statistical analysis and machine learning modeling This project is crucial for setting a solid foundation for the subsequent machine learning analysis. The freelancer who takes on this role should be able to execute these tasks accurately and efficiently, with a strong eye for detail.

    $64 (Avg Bid)
    $64 Snittbud
    17 bud

    ...web dashboard using Python with Django framework. The purpose of the dashboard is to monitor a specific service. Admin can create new services or update / delete Ability to add commands to start a service if it crashes by using the commands and notify on successful execution. As well as provide web dashboard for visibility . If this service crashes, the dashboard should send notifications via email and then restart the service. Key Requirements: - Develop a Python-based web dashboard using the Django framework. - Implement a monitor for a specific service. - Configure email notifications to be sent out to a designated email address upon service crash. - Enable the dashboard to automatically restart the service upon crash. Your Experience: - Proficiency in Python...

    $168 (Avg Bid)
    $168 Snittbud
    13 bud

    I'm looking for a skilled Python developer to help me with a scraping project. I need to extract specific product data from a website's table. Skillset: - Proficiency in Python and Scrapy - Experience in web scraping - Familiarity with handling web popups The website () contains a table with important product information. For each product, I need the following details scrapped: Certificate Type Certificate Number Product Type Organization Name Country Issue Date Expiry Date in addition to Product Details Brand Model Description Barcode The data should be saved in a CSV file. There are no specific rules or requirements to be followed during the scraping process.

    $44 (Avg Bid)
    $44 Snittbud
    22 bud

    ...system should be able to process various types of documents including printed documents, handwritten notes, and scanned images. Key requirements for the project include: - Develop the system using Python, Java, and C# - Ensure that the system can accurately extract and process text from different types of documents - Implement a reliable method for processing printed documents, handwritten notes, and scanned images - Provide a user-friendly interface for uploading and retrieving documents Ideal candidates for this project should have: - Proven experience in developing OCR systems - Expertise in Python, Java, and C# - Strong understanding of document processing techniques - The ability to deliver a user-friendly and efficient solution If you have prior experience in OCR...

    $87 (Avg Bid)
    $87 Snittbud
    10 bud
    Python PDF to XML Conversion 6 dagar left
    VERIFIERAD

    I need a Python developer to help me convert a PDF file into an XML file. And Share that Python Code With me as well. Key Requirements: - The primary task is to extract text from the PDF and structure it into an XML file. Ideal Skills: - Strong proficiency in Python, with a good understanding of its syntax and libraries, particularly for PDF processing. - Experience in text extraction from PDFs is a plus. Please note that I do not have a predefined XML structure in mind, so I'll need some guidance on how to structure the output.

    $21 (Avg Bid)
    $21 Snittbud
    31 bud
    Expert in Neural Network -- 2 6 dagar left
    VERIFIERAD

    My project requires an expert in machine learning, particularly with a focus on using Python for neural networks. Ideal Skills and Experience: - Proven experience in machine learning projects - Expertise in Python programming - Proficiency in neural network programming - Strong understanding of deep learning Your understanding of machine learning principles, advanced Python programming, and neural network frameworks will be pivotal to the success of this project. Please detail your relevant experience and provide examples of similar projects.

    $100 (Avg Bid)
    $100 Snittbud
    12 bud
    Python Selenium Expert Needed 6 dagar left
    VERIFIERAD

    I'm looking for a skilled Python developer with experience in web scraping and Selenium. Your task is to extract a domain list from a given URL (). The data extracted should be cross-referenced for each domain with the following fields: name, full address, email, and phone. Key Requirements: - Extract domain list from a specific website () - Implement cross-referencing for each domain with name, full address, email, and phone - Proficiency in Python and Selenium for web scraping - Ideally, experience with data cleaning and manipulation Please note that the number of records on the dealer locator is unknown. Your ability to handle large data sets will be crucial for the successful completion of this project.

    $154 (Avg Bid)
    $154 Snittbud
    27 bud

    I'm looking for an experienced Python developer who has previously worked with options Greeks and the Zerodha API. Your main tasks will involve: - add third order greeks to an existing code The ideal candidate should have a strong command over Python, especially the Pandas library, and a thorough understanding of financial markets, particularly options Greeks. Prior experience working with the Zerodha API will be highly beneficial for this role. I look forward to your proposals!

    $16 (Avg Bid)
    $16 Snittbud
    4 bud

    ...a skilled developer who can create a tool that utilizes Google Chrome to perform searches and click on search results multiple times. Key Project Requirements: - The tool should be built using Python, Java or Visual Basic - The primary goal of the tool is to perform automated web browser searches and click on various results - The tool should utilize Google Chrome as the web browser To give you a better idea, the tool should: - Conduct multiple web searches on Google - Click on a configurable number of search results from the returned search page Ideal Skills and Experience: - Proficient in Python, Java or Visual Basic - Experience in browser automation and web scraping - Familiarity with Google Chrome's automation capabilities If you have experience with similar ...

    $496 (Avg Bid)
    $496 Snittbud
    46 bud

    I'm in need of a skilled Python developer to work on a web scraping project. Key Requirements: - I'm primarily focusing on Web scraping as the main functionality for the project. - You should be well-versed in Python and have a proven track record in data analysis. - Knowledge of web scraping is essential to ensure efficient and reliable data extraction.

    $101 (Avg Bid)
    $101 Snittbud
    23 bud

    My project requires an expert in machine learning, particularly with a focus on using Python for neural networks. Ideal Skills and Experience: - Proven experience in machine learning projects - Expertise in Python programming - Proficiency in neural network programming - Strong understanding of deep learning Your understanding of machine learning principles, advanced Python programming, and neural network frameworks will be pivotal to the success of this project. Please detail your relevant experience and provide examples of similar projects.

    $88 (Avg Bid)
    $88 Snittbud
    8 bud

    I'm in need of a skilled Python coder to assist me in deploying Locally Hosted Language Model (LLM) applications. Here are the details: - **Operating System**: The deployment is hybrid, so familiarity with Windows, macOS, and Linux is ideal. - **Purpose**: The primary aim of the deployment is for text ebedding (vector db) and generation. - **Requirements**: Specifically, I'm looking for functionality related to Language modeling and retrieval augment generation in the LLM applications. - mongoDB should be set up runining a .sh file - docker-compose deploy of the app - whisper transformers for stt ttl - AWS S3 bucket for file serving Essential skills for this project include a strong background in Python programming and experience with deploying applications on di...

    $207 (Avg Bid)
    $207 Snittbud
    15 bud

    ...between Raspberry Pi and Mitsubishi Driver (Model:MR-J5W3-222G) - Writing code for controlling the servo driver from the Raspberry Pi - Testing and debugging the system - Providing support for any issues that may arise during the project Previous experience with Raspberry Pi and Panasonic Servo Drivers is a must. Additionally, the ideal candidate will have a strong understanding of programming in Python, as well as a background in robotics or industrial automation. GUI in Raspberry Pi will have START button. When we click on start button: Step 1: Communicate with Start Panasonic Servo Driver 1 to rotate the Servo motor in Clockwise direction and stop and a fixed position. This position we have to confirm with testing. Step 2: After the Servo 1 STOP. Panasonic Servo Driver...

    $66 (Avg Bid)
    $66 Snittbud
    12 bud
    Desarrollador ODOO 6 dagar left
    VERIFIERAD

    Estamos buscando un desarrol...realizar customizaciones en ODOO. - Colaborar en la integración de ODOO con otros sistemas. - Participar en el diseño y desarrollo de soluciones basadas en ODOO. - Realizar pruebas y depuración de código. - Mantenerse actualizado sobre las últimas tendencias y tecnologías en ODOO. Requisitos: - Experiencia demostrable en el desarrollo de aplicaciones utilizando ODOO. - Conocimientos sólidos en Python y Odoo Framework. - Capacidad para trabajar de manera autónoma y en equipo. - Excelentes habilidades de comunicación y resolución de problemas. - Certificación en ODOO (deseable pero no indispensable). Beneficios: - 100% Remoto - Salario competitivo. - Oportunidades de crecimien...

    $6 / hr (Avg Bid)
    $6 / hr Snittbud
    4 bud

    I need a Python program that can tap into Yahoo's fantasy football datasets using their API and extract various essential pieces of historical league-specific information. The main requirements of my project include: - Extracting information like player statistics, team standings, draft results, transactions (trades and adds/drops), weekly schedules (head-to-head matchups by week), weekly lineups, scoring settings, and league settings The Yahoo API Endpoints you'll need to use as inputs to derive the above data extracts for a particular league are: - the associated League ID (each league created by Yahoo is given it's own unique ID that a league member can provide) - the associated Game Key (there is a unique Game Key provided by Yahoo by fantasy sport and by year) ...

    $843 (Avg Bid)
    $843 Snittbud
    81 bud

    ...capabilities. While I did not specify a preferred programming language, I need someone versatile in universal languages such as C++, Java, or Python. Key features and requirements: - Data Management: The application should seamlessly handle data input, output, storage, and backup. - Report Generation: A core feature should be to generate real-time, insightful and efficiently formatted reports from the managed data. - User Authentication: A secure user authentication process is essential, ensuring only authorized users get access to data or functionality. Ideal Candidate: - Comprehensive experience in diverse programming languages (C++, Java, Python) - Expertise in developing applications with data management, report generation and user authentication features. - Probl...

    $288 (Avg Bid)
    $288 Snittbud
    10 bud

    I'm looking for someone with experience with APIs and SDKs in Python who can guide me through successfully connecting to the Kwenta SDK. Your main task will be to help me connect it, so I can execute the order. I'm looking for someone who can explain things clearly and concisely, and is available to answer any follow-up questions I may have.

    $33 (Avg Bid)
    $33 Snittbud
    13 bud

    I have a web scraper script that needs fixing. It's designed to scrape various URLs from the Apollo webs...properly, and needs to be fixed. - URL scraping: The script should be able to successfully pull the data from the selected URLs on Apollo website. Experience with: - Web Scraping: Previous experience in web scraping is essential, as the data needs to be pulled accurately from this specific website. - Script Debugging: Ability to identify and fix issues within an existing script. - Proficiency in Python or relevant language for web scraping. - Knowledge of Apollo website structure. Please make sure your bid includes information on how you plan to approach fixing this script. Open to suggestions on alternative approaches as well, as long as they can meet the required d...

    $25 (Avg Bid)
    $25 Snittbud
    16 bud

    ...status—active when on, and inactive when off. Solutions utilizing 'keybd_event' and 'SendInput' do not meet the requirements of this project; a deeper, more intrinsic approach is necessary. Conditions: The keyboard emulator must function correctly within the game. The project must be compatible with Windows 10. Candidates should be proficient in at least one of the following programming languages: C++, Python, or Pascal. Payment will be made upon successful demonstration of the emulator working within the game. Note: This project does not involve breaking any game's security measures or installing unsigned drivers. Important Information: Macro usage in the game is permitted and is not considered illegal. Before bidding on the project, please con...

    $20 (Avg Bid)
    $20 Snittbud
    3 bud

    I'm looking for a talented individual who can help me develop an LLM text model which behaves like a virtual girlfriend. This text model must be engaging in intelligent dialogues with emotions and feelings. Here are the primary requirements for this project: - Create an AI-driven text mod...how to configure the backend of the model to limit illegal content or prohibited dialogue contexts. Ideal skills and experience for this job include: - Proven experience in developing AI-driven chatbots or virtual assistants - Proficiency in natural language processing (NLP) and machine learning - Strong understanding of emotional intelligence and how to incorporate it into AI models - Master Python * If you have any questions, you can write to me and coordinate a test. We will also prese...

    $38 / hr (Avg Bid)
    $38 / hr Snittbud
    57 bud

    I need a Python program to parse a JSON file and format it correctly to be JSON compliant. Key Requirements: - Input Data: The input data is in JSON format. - Output Data: The JSON output should be properly formatted and adhere to a specific schema or structure. Skills and Experience Required: - Proficiency in Python programming. - Strong understanding of JSON parsing and formatting. - Experience in adhering to specific JSON schemas or structures. Please let me know your experience in similar projects and any relevant information that would make you a strong candidate for this job. You will pass the name of the input file as an argument and the output file should be the same file name with the .output extension. The input file is attached. Pay attention to the backsla...

    $50 (Avg Bid)
    Garanterad
    $50
    4 bidrag

    You must to be at least 16 years old and live in Latin America or Eastern Europe. ✻ NO EXPERIENCE REQUIRED ✻ You do not need any experience whatsoever, but you must be clever and eager to learn. No. I am *not* being charitable; rather, I am being practical. ✻ PAYING YOU TO LEARN ✻ No. You aren't dreaming. I value intelligence and problem-solving ability over experience. I'd prefer to work with someone who is clever and learns quickly rather than someone experienced but is not very intelligent and/or does not solve problems scientifically. Would I hire an Isaac Newton or an Albert Einstein even if he had no programming experience? Of course I would. ✻ TESTS ✻ You must pass several difficult logic tests to work with me. The first logic test you complete for me will be an un...

    $1191 (Avg Bid)
    $1191 Snittbud
    42 bud
    Wordpress + python.. urgent 6 dagar left
    VERIFIERAD

    Python Script Developer for Photoshop Automation & WordPress/WooCommerce Integration We are seeking a freelance Python developer to create a script that automates Photoshop tasks and integrates with WordPress/WooCommerce for product customization. The script will: Develop a Python script to automate Photoshop operations. Integrate the script with WordPress/WooCommerce to retrieve order details. Automatically open Photoshop and modify PSD files based on customer orders. Update text layers with customer input and save customized templates as JPG/PDF.

    $130 (Avg Bid)
    $130 Snittbud
    20 bud

    Seeking a long-term Python Data Scientist and Generative AI expert Your task is to develop a prototype chatbot that is powered by Generative AI and Large Language Model (LLM) to respond to user queries using domain-specific knowledge and RAG implementation. The project will focus on integrating LLM frameworks, managing data preprocessing, and implementing the chatbot's user interactions. ONLY people who respond to below screening questions will be considered: 1) Did you fine-tune an LLM model using LoRA or QLoRA? If so, which model did you fine-tune, and what was the use case? 2) Do you have a GitHub profile? If so, can you share the link? 3) Are you proficient in English, and what is your hourly rate?

    $24 / hr (Avg Bid)
    $24 / hr Snittbud
    56 bud

    I have a simple python script that interact with an API that takes data from said api and outputs it in a table. The service where I use the API also has a website where I can see in the same table format the exact same data. Pandas know how will help. My problem is that the data from API and from service is mismatching. Your job is too look and identify where the problem is. You will receive both program (simple streamlit app that runs locally) and login details to website to cross check.

    $7 (Avg Bid)
    $7 Snittbud
    5 bud

    I am seeking an experienced engineer to design and implement a two-axis machine control system that is capable of: - Effectively controlling and managing the movements of the system along two axes with a LIMITED RANGE. Your expertise in designing systems with the necessary naviga...knowledge in machine systems control and design. - A thorough understanding of motion control strategies. - A background in data analysis and logs processing. The machine is a Bandsaw to cut small logs into planks. The 2-off, NEMA 23 stepper motor movements are sequential, ie, first one moves then the second stepper moves. The controller is a Raspberry Pi 4, the prefered language is Python. Input to the controller via R Pi 7inch Touchscreen. File is to big to attach I look forward to ...

    $583 (Avg Bid)
    $583 Snittbud
    4 bud

    I'm seeking an expert in Python for a Natural Language Processing project focusing on text classification of social media posts. Key Project Features: - The goal is to build a Python coding notebook that can efficiently classify different types of text within social media posts. This will require a deep understanding of NLP principles and techniques. - The project primarily demands the use of Python for its implementation. Ideal Skills and Experience: - Expertise in Python programming is a must. - A strong background in NLP, particularly in the area of text classification, will be highly beneficial. - Prior experience working with social media text data would be a plus. If you're confident in your Python and NLP skills and have experience...

    $188 (Avg Bid)
    $188 Snittbud
    24 bud