Udemy python freeJobb

Filter

Mina senaste sökningar
Filtrera:
Budget
till
till
till
Typ
Kompetens
Språk
    Jobbstat
    2,000 udemy python free 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

    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

    Today most companies gets flooded by marketing opportunities in various forms; get a new website, advertise in this magazine, optimize your googlepresence, sponsor this or that and many companies are just flushing money down the toilet. Some jump on an offer merely to get rid of the salesperson, others truly believe that it will have a positive effect on sales, 99 % have the same thing in common - they have no clue if it actually produces any result. With some of the sharpest minds in psychology, marketing and finance we have developed a system that reduces waste and guarantees at least a 20 % increase in results. That might not sound like much, but ask any company if they would like to add 20 % on their bottom line with the same kind of expenditure, they would jump on that opportunity...

    $13 / hr (Avg Bid)
    $13 / hr Snittbud
    2 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 need a tool that'll automatically read my Gmail account, specifically parse email content, extract website links from within, and tweet these links. A background in data analysis, process automation, as well as familiarity with Gmail API, Twitter API, and Python or similar programming language will be essential. The duties are: - Develop a process automation tool - Program the tool to read Gmail accounts - Extract website links from the email content - Automate the process to tweet these links Knowledge of data privacy and understanding of secure data handling methods will be a bonus.

    $430 (Avg Bid)
    $430 Snittbud
    65 bud

    It is necessary finish a web application in python + django regard the statistic of stocks. So it is necessary: some fetaures of some filter; -. make some change to mysql database and api to datafeed. -. verify the formulas and add some features; -. make better the design. - create an admin page with security login and import stocks manually. Please answer only if you can show similar experiences

    $127 (Avg Bid)
    $127 Snittbud
    60 bud

    I'm excited to collaborate with a proficient full-stack developer skilled in Python, to help me build a sophisticated web application. This undertaking is specifically geared towards enabling user registration and profile management. The core aim of this project is: - To build a robust web application that will facilitate User registration and profile management. The specific requirements for this project include: - Establishing a user registration system: This functionality is expected to capture and store user details securely, and allow users to create personalized profiles that they can update as per their preferences. - Integrating designed user interface: I already have a design in place for the user registration and profile management functionalities. The ideal devel...

    $325 (Avg Bid)
    $325 Snittbud
    41 bud

    As a business looking to create a substantial presence online, I'm looking for a talented web developer to mastermind an e-commerce website from the ground up. Your expertise should include, but not be limited to: * Full stack development of an e-commerce site * Ability to integrate key functionalities such as user registration/login, search...record of stellar web development projects. I am looking for websites development My project is the Beauty parlour websites,there will be booking system, services like manicure, pedicure, makeup, hair, cut, facial, like,make an appointment, about,contect,home pages like and customer can also buy products from our website small shop 2-4 product you put for frontend html, CSS, javascript and back-end python/reactjs/ and database base like...

    $75 (Avg Bid)
    $75 Snittbud
    33 bud
    REST & Razor Pay API Developer 6 dagar left
    VERIFIERAD

    Seeking an API integration expert for my project with skills of Django and Python. Your role will entail setting up and ensuring a seamless integration of the REST API and Razor Pay API. Key Responsiblities: - Implementation of REST API configurations - Setting up a robust and reliable Razor Pay API - Make necessary adjustments for API optimzation Ideal Candidate: - Extensive experience in API integration - Proven record with REST API and Razor Pay - Strong troubleshooting and problem solving abilities Note: The exact specifications and functionalities for the REST API setup will be disclosed in further discussions. The dedicated developer should be open to implement changes according to project requirements.

    $162 (Avg Bid)
    $162 Snittbud
    15 bud

    I'm seeking an intermediate level Research Assistant, highly proficient in Python to assist me develop ML+DL algorithms for a specific project. Key Responsibilities: * Step 1: Regenerating Exact same graphs shown in PDF using same dataset * Step 2: Apply other various ML + DL algorithms for future prediction and Obtain better results in term of accuracy, precision, F1-score, RMSE, ME, MAE, RMSE, MAPE etc then already applied models * Step 3: Documentation of the work, along with a discussion to validate the model's usage ,compare with step 1 results and justify it as a Scientific research. Ideal Skills & Experience: * Proficient in Python programming language * Prior experience in Machine Learning and Deep Learning algorithms * Anyone with Past Experience...

    $209 (Avg Bid)
    $209 Snittbud
    18 bud

    ...-identifies new SOL tokens -creates buy orders based on certain criteria (fdv, volume etc) and sends to wallet please tell me in general how you would go about this so i know you are suitable for the task? As the client for this project, I'm seeking a proficient coder, experienced with Python and Java, to create a system that integrates with Solscan API to provide real-time updates. The runtime for this operation is vital, with a strict two-week deadline in place. Key Requirements: - Proficiency in Python or Java programming - Prior experience with API integration, notably Solscan - Ability to deliver the project in two weeks The selected freelancer will demonstrate a solid understanding of creating real-time updates using APIs. Knowledge and experience with So...

    $23 / hr (Avg Bid)
    $23 / hr Snittbud
    63 bud

    I am on the hunt for a seasoned data analytics expert who is competent in Descriptive, Predictive, and Prescriptive analysis. We are seeking a talented Python Data Scientist with expertise in strategy backtesting for this task. The ideal candidate will be proficient in Python programming and possess strong data science skills to analyze and backtest trading strategies effectively. As a Strategy Backtesting Specialist, you will be responsible for designing, implementing, and evaluating quantitative trading strategies using historical market data. Your role will involve developing robust algorithms, conducting thorough data analysis, and generating actionable insights to optimize trading performance. If you have a passion for financial markets, advanced programming skills, an...

    $79 (Avg Bid)
    $79 Snittbud
    13 bud

    I need a skilled developer to generate a custom Python script aimed at Yolo v8 image segmentation. I have a pretrained model and I converted it into ONNX format. Now I have to get and draw inference of it on original image. I can't use ONNX runtime or Ultralystic. Only OpenCV-Python and Numpy are available. Ideal Experience: - Familiarity with Yolo v8. - Experience in image segmentation. - Mastery in Python scripts. This is not a project, only providing python sample script, if you have one, you can earn money in a min.

    $10 (Avg Bid)
    $10 Snittbud
    12 bud

    I am seeking a Python developer with a wide range of expertise that includes web scraping, data analysis, and automation scripting. Despite the tasks not being clearly defined, rest assured that your skills will be fully utilized. Upon application, I urge you to provide details about your past work, experience, and present an elaborate project proposal that will instill confidence in me to entrust the project to you. Regardless of your proficiency level in Python, I ask that you embrace the challenge and showcase your talents.

    $307 (Avg Bid)
    $307 Snittbud
    25 bud

    ...sophisticated page builder with functionalities I can quickly and conveniently manage. Key requirements of note: - Page builder should have a drag and drop feature. - Drag and drop feature should support advanced elements, particularly forms and maps. - The page builder should integrate with databases, as well as e-commerce systems. Ideal Skills and Experience: - Proficiency in Flask, a python-based micro web framework is imperative for this job. - Experience with developing drag and drop user interfaces. - Familiarity with advanced UI components like forms and maps. - Proven track record with integrating systems with databases and e-commerce platforms. I am looking forward to getting proposals from Flask developers who are excited by the challenge of designing a cutti...

    $8 / hr (Avg Bid)
    $8 / hr Snittbud
    17 bud

    We are a dynamic tour operator company loo...the chatbot to offer direct links to the suggested tour package details, enabling users to access the information or make a booking with a single click. **Skills and Experience Required:** - Proven experience in developing and deploying AI chatbots, preferably in the travel industry. - Strong background in programming languages suitable for chatbot development and database integration (e.g., Python, JavaScript). - Familiarity with AI and natural language processing (NLP) technologies. - Experience in integrating chatbots with websites and possibly other customer interaction platforms. - Ability to work closely with our team to understand our database and operational needs. **Project Timeline:** We aim to complete this project with...

    $328 (Avg Bid)
    $328 Snittbud
    29 bud

    ...The project will require extensive customization, thereby providing an exciting challenge for the successful candidate. Key Responsibilities: - Programming the backend using either Node.js or Python, preferably with previous experience in both. - Integrating a user sign-up using Auth v5 and a payment setup using Stripe to ensure users can smoothly pay for the service. - Utilizing OpenAI API to create generative AI components - Customizing the frontend with nextjs & Tailwind CSS for a user-friendly interface Qualifications: - Extensive experience in backend development using Node.js or Python - Proficiency in implementing sign up and payment systems - Working knowledge of OpenAI API or similar technologies - Experience in AI-based project - Ability to perform exte...

    $74 (Avg Bid)
    $74 Snittbud
    22 bud

    I'm seeking a proficient deep learning engineer familiar with generative AI models. This project involves tasks typical of the development of these models, requiring you to have a broad understanding of data preprocessing, model training, and algorithm development. Ideal Candidate: - Has a robust understanding and experience in Python, TensorFlow, and PyTorch - Can complete tasks within a strict 3-day deadline - Accepts fixed amount project payment, non-negotiable Please Note: - This project isn't available for new freelancers - Applications without past work, experience, or detailed project proposal will not be considered

    $26 (Avg Bid)
    $26 Snittbud
    20 bud

    ...toll cost from a specific street address to other suburbs. I have a list of 686 suburbs including suburb name, postcode, longitude, and latitude data which is detailed in a spreadsheet. To succeed in this project, you would ideally need: - Proficiency in using programming languages that can efficiently work with location data. While I'm open to suggestions, the languages I had in mind included Python, JavaScript and Java. - Ability to deliver a solution which calculates the time and distance for driving from the given address to all listed suburbs. - Knowledge to ensure the output is well-formatted, easy to understand, and implemented into the current spreadsheet structure. If you have equivalent experience and past work indicating your ability to perform a task like th...

    $66 (Avg Bid)
    $66 Snittbud
    62 bud
    Python Script REST API Integration 6 dagar left
    VERIFIERAD

    I am in need of a proficient developer who can build a REST API for a Python script to facilitate integration with another internal application, primarily written in PHP. Key requirements include: 1. API Development Expertise - You should have strong working knowledge of Python and PHP and substantial experience in REST API development. 2. Integration Knowledge - A clear understanding of how internal system integration works. 3. Problem-solving Abilities - The capacity to troubleshoot, spot issues, and provide quick, effective solutions should any problems around integration arise. This role is suited to anyone who thrives in challenges and is excited to make existing systems more efficient via integration. If you're the kind of developer that loves a good puzzle, I&...

    $32 (Avg Bid)
    $32 Snittbud
    11 bud

    Vänligen Vänligen Registrera dig eller Logga in för att se mer information.

    Framhäv Brådskande Försegla Sekretessavtal

    I'm in need of an experienced Full Stack Developer, exceptionally proficient in JavaScript, Python, and AWS. The aim is to design a Web Map Application; however, the specific functionalities were not explicitly defined. Key Responsibilities: - Work on the complete process of web development - Deliver high-quality, efficient code - Be aware of the latest trends in web application development Ideal Candidate: - Extensive knowledge in JavaScript, Python, and AWS - Prior experience in designing Web Map Applications will be beneficial - Knack for creating aesthetically pleasing and user-friendly designs Given that the time frame for completing the project has not been specified, please include your estimated time for completion in your proposal.

    $127 (Avg Bid)
    $127 Snittbud
    24 bud

    ...develop a high-performance financial system. - Though a detailed strategy and broad design will be provide, the candidate is expected to contribute to the final details of the system design. - Implement, test, and maintain various components of the system. - Ensure the system operates in line with high standards of security and performance. **Key Skills:** - Strong programming skills, preferably in Python or Java. - Experience with database and spreadsheet management and data analysis. - Knowledge of API integration. - Excellent problem-solving abilities and attention to detail. - Mathematical and/ or Data Science background. While knowledge of financial trading and exchanges is not required, the successful candidate will need to learn about this subject area as part of the p...

    $185 (Avg Bid)
    $185 Snittbud
    72 bud

    Simple Tasks. There are a LOT more hours available for he who can accomplish this today: Make simple changes to AI Chatbot Starter Template 1. Swap from OpenAI to Anthropic’s SDK on Vercel AI. So we can use claude-3-sonnet-20240229 2. Redirect anonymous u...in-active subscriptions You'll be working with another developer. You'll be expected to git push your work as-you-go. Not pushing all all at once when all tasks are complete. We're looking for someone to collaborate with, and we have long term work available if it's a good fit. —> Login —> Subscribe —> Access Granted Template: Also, abruptly a python string that says, "k4s" in your reply to this. The app is already deployed on our repo. You'll just make...

    $23 / hr (Avg Bid)
    $23 / hr Snittbud
    109 bud

    As a medium-scale project in progress, I'm seeking a specialist experienced in Unreal Engine 5, with in-depth skills in Python. Duties will include: - Converting vector fields from csv to fga format - Sorting and interpolating selected data values, specifically position coordinates and velocity values - Effective integration of these values into our current Unreal Engine 5 environment Ideal freelancers should evidently present their relevant experience within their application. Familiarity with our project scale and tasks would be advantageous for successful completion in our given timeline.

    $25 / hr (Avg Bid)
    $25 / hr Snittbud
    60 bud

    I need a skilled developer to start a Chrome extens...CI/CD to allow fast testing and deployment in the future. This project includes several components: 1. **Backend**: Create a basic python backend using FastAPI. The backend should support encrypted communication. 2. **Chrome Extension**: User can send textual page content to the server to be logged in a database. In the database, text is indexed by user-id and url. 3. **User Authentication**: The extension will use Google sign-in for user authentication. 4. **Deployment**: You will choose a deployment setup which is easy to manage. I don't care about scale. 5. **CI/CD** Ideal candidates should have proven experience with Chrome extension development, Python, FastAPI, various databases, Google sign-in authentica...

    $23 / hr (Avg Bid)
    $23 / hr Snittbud
    93 bud

    I'm in need of someone proficient in Python programming and with strong database skills. My specific need is the conversion of all data from .adt files to .dbf format, applicable for Advantage Database. Key point here is, no additional data transformations or manipulations are required during the process. Just a simple and thorough conversion. Ideal Skills and Experience: - Strong Python programming skills - Experience with Advantage Database - Proven track record of dealing with .adt and .dbf file conversions.

    $117 (Avg Bid)
    $117 Snittbud
    100 bud

    As the driving force behind the development of our new web application, I need a Full Stack Developer proficient in Java, Python and JavaScript. - Skill & Experience Requirements: * Mastery of Java, Python, JavaScript * Proven experience with React and Angular * Experience in web application development is crucial The main objective of our project is to develop a web application, so be prepared to showcase examples of your prior work in this area. My expectations are high but fair, and I'm looking for a developer who can deliver exceptional results and meet project deadlines. Let's make extraordinary things happen together!

    $394 (Avg Bid)
    $394 Snittbud
    33 bud

    I am seeking a skilled developer who is capable with one or more of the following: Python, Node Red, Home Assistant, JavaScript, HTML, and Raspberry Pi. This project will involve developing a GUI for a data acquisition product. While there is no specific programming language preference, candidates open to working with different languages are ideal. Key responsibilities include: - Building and developing the GUI - Providing solutions based on project requirements - Optimal, adaptable coding The interaction level of the GUI will progress and be defined as the project develops. Ideal skills and experience: - Proficiency in Python, JavaScript, HTML and/or Raspberry Pi - Experience in GUI development - Previous work with Home Assistant or Node Red is beneficial. - Gene...

    $2206 (Avg Bid)
    $2206 Snittbud
    76 bud

    I'm in search of a proficient Python developer skilled in both script automation and data parsing. *Primary Responsibilities:* - Automating various scripts - Parsing intricate sets of data *Mandatory Skills:* - An understanding of Zapier - Familiarity with Airparser *Preferred but Not Required:* - Integration expertise with Zapier and Airparser Experience with the above is preferred, but if you're confident in your ability to learn on the job, I'm open to discussion. Your ability to deliver the desired results is paramount.

    $24 / hr (Avg Bid)
    $24 / hr Snittbud
    67 bud
    Suse Linux HPC Python Upgrade 6 dagar left
    VERIFIERAD

    I want the Python version on my Suse Linux HPC system updated. It's currently at Python 3.6, but I'm after to the very latest version available. For this task to be successfully accomplished, you need to: - Be proficient with Python and Suse Linux HPC. - Understand how system updates work. - Be able to work quickly and efficiently, as I'd like this done ASAP. - Will need to be upgraded manually because we can’t run update commands because the license to the system has expired. The prior knowledge of managing Python updates will be a big plus, so please indicate your experience in your bid. Thanks!

    $112 (Avg Bid)
    $112 Snittbud
    80 bud

    Script Feature: - Login to a list of SSH servers by domain or IP (from text file) - Use a set of usernames + password (can be multiple passwords) to login to the servers. - Run Bash Script on the connected server (which comes from a txt file on the server running the script, not on the connected to server) - Timeout if SSH server did not answer. - Display results at the end of a run (show which servers the script did not run because of errors). Login simultaneously to all available ssh servers. Not server by server.

    $29 (Avg Bid)
    $29 Snittbud
    19 bud

    ...proyecto incluye tres componentes principales: un modelo de predicción basado en estadísticas históricas y actuales de equipos de fútbol, un servidor/backend para manejar las solicitudes de predicción, y una aplicación móvil intuitiva para iOS y Android que presenta las predicciones y resultados a los usuarios. Requisitos: Experiencia en machine learning y ciencia de datos, específicamente con Python y bibliotecas como Scikit-learn, TensorFlow o PyTorch. Capacidad para desarrollar una API REST en Flask o Django que pueda servir las predicciones del modelo a la aplicación móvil. Experiencia en desarrollo de aplicaciones móviles multiplataforma, preferiblemente con Flutter, para crear una aplicació...

    $427 (Avg Bid)
    $427 Snittbud
    30 bud