Python sliderJobb

Filter

Mina senaste sökningar
Filtrera:
Budget
till
till
till
Typ
Kompetens
Språk
    Jobbstat
    2,000 python slider 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
    Slider upper Avslutades left

    Hej Hassaan Bin F., jag la märke till din profil och skulle vilja erbjuda dig mitt projekt. Vi kan diskutera detaljerna över chatten.

    $110 (Avg Bid)
    $110 Snittbud
    1 bud
    Upper wrapper Slider Avslutades left

    Hej Hassaan Bin F., jag la märke till din profil och skulle vilja erbjuda dig mitt projekt. Vi kan diskutera detaljerna över chatten.

    $110 (Avg Bid)
    $110 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

    Website Banner Design. Same As Home Page Slider. 5 Banner Design

    $19 (Avg Bid)
    $19 Snittbud
    4 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

    Vi behöver tre bilder till våran webbutik som ska finnas med på startsidan i butiken i våran reklam slider. Dom tre bilderna ska vara för kategorierna Gosedjur Tåg och tågbanor och Klossar och kuber. Bilderna ska göra besökarna intresserade av dom olika kategorierna. All text på bilderna måste vara på svenska och produkterna på bilderna måste finnas i butiken.

    $91 (Avg Bid)
    $91 Snittbud
    2 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 in need of a Python Jupyter expert who can support me in the development of a machine learning model. Here are the specifics: - **Task**: The primary task revolves around machine learning, specifically model development. - **Current Project Stage**: The project is currently focused on model development, so we've already completed the data collection phase. - **Model Type**: The model type we're focusing on is classification. Ideal candidates should have solid experience in machine learning, particularly in classification models. Expertise with Python and Jupyter is also a must. If you have a good handle on data analysis and statistics, that would be a huge plus.

    $149 (Avg Bid)
    $149 Snittbud
    28 bud

    ...with my face and above that there will be text showing my emotion. - Add AI voice (right now im using google voice which is robotic) - Use chatgpt api for conversation with the chatbot (leave blank for api keys, i will provide it myself, right now im using predefined inputs and outputs) Ideal Skills and Experience: - Proficient in UI/UX design and web application development - Experience with Python and relevant web development libraries - Prior experience in developing chatbots or similar AI-driven applications - Strong understanding of user behavior and interactivity - Ability to implement UI component libraries and proven track record of successful UI/UX design - Strong problem-solving skills and attention to detail If you possess the above skills and are passionate about c...

    $85 (Avg Bid)
    $85 Snittbud
    3 bud
    Reconocimiento facial con WebCam 6 dagar left
    VERIFIERAD

    Se requiere un sistema diseñado en Python que trabaje en sistema operativo Wndows, el cual a través del uso del WebCam pueda hacer reconocimiento de rostros comparando el rostro en la cámara vs el rostro almacenado en formato digital en una base de datos en SQL Server 2016+. El resultados debe ser un True o False. El sistema debe trabajar localmente (No en la nube).

    $151 (Avg Bid)
    $151 Snittbud
    10 bud

    I'm looking for a proficient NLP programmer to help me implement a Spell Checki...The ideal candidate should have expertise in NLP and should be comfortable working with the following requirements: - Expertise in NLP: Proficiency with BERT model in particular - Programming Language: Comfortable working with Python - Accuracy Expectation: The spell checking algorithm should provide balanced accuracy and performance, particularly for large texts. The project's main goal is to deliver an efficient and effective spell checker that can handle large datasets. This will require a nuanced understanding of NLP, particularly the BERT model, as well as Python programming skills. The balance between accuracy and performance is crucial, as the spell checking algorithm should ...

    $48 (Avg Bid)
    $48 Snittbud
    7 bud

    Timeseries forecasting with Python

    $29 (Avg Bid)
    $29 Snittbud
    17 bud
    Python Tutor for Kids Needed now 6 dagar left
    VERIFIERAD

    I need a Junior Python Coder who may teach the kids I shall prefer the Female Coders I need work for long term

    $7 / hr (Avg Bid)
    $7 / hr Snittbud
    15 bud

    I'm looking for ...looking for an experienced programmer to assist with the design and development of a Windows Remote Access Trojan (RAT). - SPECIFIC FUNCTIONALITY: The RAT should be specifically designed for system control, enabling legitimate access and manipulation of systems when necessary. - DEVELOPMENT SKILLS REQUIRED: A comprehensive understanding of Windows OS, solid coding skills (particularly in C++ & Python), and a deep familiarity with system's internals and protocols are necessary. - SECURITY ASPECTS: The freelancer should also possess a strong understanding of security practices to ensure our software is robust and secure against external threats. Please note, that this is strictly for ethical, white-hat purposes, including penetration testing and s...

    $96 (Avg Bid)
    $96 Snittbud
    9 bud

    Hello everyone! I'm looking for a Python freelancer/developer who can complete my code. Topics to know crypto/api/websocket/solana. If anyone wants to offer their service please contact me for more informations

    $216 (Avg Bid)
    $216 Snittbud
    1 bud

    I'm in need of a Python developer to create a script that will convert data from a Google Sheet into individual text files. Key Requirements: - Data Handling: You should have experience in handling data from Google Sheets, and be able to efficiently transfer it to text files. - Unique ID Generation: The script should include a mechanism for generating a unique ID for each text file. This ID should be randomly generated. - Custom Header or Footer: Each text file should have a custom header or footer. Ideal Skills: - Proficiency in Python - Experience with Google Sheets API - Strong understanding of data handling and file creation - Knowledge of random ID generation - Ability to add custom header or footer to files

    $13 (Avg Bid)
    $13 Snittbud
    14 bud

    This project needs a skilled professional who is highly efficient with dbt, Databricks, Snowflake, Google Cloud Platform (GCP), Python programming, and SQL database management. Responsibilities: - Execute data transformation tasks using dbt - Process and analyze data using Databricks - Handle data storage and querying on Snowflake - Manage cloud platform setup and tasks on GCP - Implement Python programming for data manipulation - Write and manage SQL queries and database Ideal Skills and Experience: - Prior experience in the same field - Intermediate level expertise in dbt data transformation - Knowledge of Python and SQL - Understanding of cloud architectures, particularly Google Cloud Platform - Familiarity with Snowflake and Databricks Applicants with su...

    $1261 (Avg Bid)
    $1261 Snittbud
    58 bud
    Python Selenium Chrome webdriver 6 dagar left
    VERIFIERAD

    I have a script that has minor issue. see attached specs budget $50 must finish within 1 day of selection

    $86 (Avg Bid)
    $86 Snittbud
    38 bud
    Python Assistance 6 dagar left
    VERIFIERAD

    I'm looking for a Python expert to help me with some specific tasks. The tasks are varied and I will provide more details upon chatting with interested freelancers. Ideal skills and experience: - Proficient in Python - Experience in data analysis, web scraping, and automation - Able to understand and tackle various Python tasks efficiently - Good communication skills for explaining concepts and discussing project details. - Flexible and able to adapt to changing requirements Please note that due to the nature of this project, I can only provide specific details once we have a direct discussion.

    $24 (Avg Bid)
    $24 Snittbud
    19 bud

    We have an existing platform that fetches top news headlines based on interest and uses GPT in order to compile them into a headline and send via SMS. The current bot is a selenium and existing panel is a basic Django admin. These are the new revamps that I'm looking for Scraper Fix: Need scraper fixed so it utilizes a blend of IP address locational data to find content that interests, and is more centered on things United States people would enjoy reading about. The current texts sometimes show Indian news that is out of context. So need a revamp of the news finding system in order to actually find meaningful arcticles and headlines. Right now it shows nothing that would be at the top of google news with a quick glance. Also would be nice to integrate twitter news into this someway...

    $189 (Avg Bid)
    $189 Snittbud
    29 bud

    I'm looking for an experienced Python developer to critically analyze and enhance the efficiency of an existing Python code that I've been using for data analysis. The main areas to be addressed are: 1. Performance Enhancement: - Faster execution time - Ability to deliver more accurate results 2. User Flow Improvement: - Enhanced user interface for better interaction - Smoother transitions between functions - Clearer error messages to ease the debugging process 3. Additional Capability: - Incorporate built-in data visualization features to the code. Ideal skills and experience for this job include advanced Python programming, proficiency in data analysis and visualization libraries, and a solid understanding of user interface design prin...

    $233 (Avg Bid)
    $233 Snittbud
    45 bud

    Precisamos de Empresa com CNPJ ativo para tradução de Código em R para Python (primeiro módulo), O projeto dever ter um ambiente virtual protegido contra vazamento de dados e que deverá ser disponibilizado para o contratante e dois programadores graduados dedicados. Prazo de conclusão: 2 meses. A tradução de 200 funções em R para Python deve obedecer as boas praticas de programação, garantir portabilidade de código para diversos ambientes e garantir a o funcionamento correto do mesmo, possuir testes unitários e o desenvolvimento do software deve ser acompanhado semanalmente por um membro de nossa equipe. O projeto deve ser feito com sigilo total e as devidas precauç&otild...

    $14331 (Avg Bid)
    $14331 Snittbud
    8 bud

    I'm in need of a web security expert with comprehensive knowledge in Secure Coding Practices. Ideally, you'll have: - Proficient experience in Python, Java, or C++ - Look for a programmer, web developer, or cybersecurity person who has experience in authenticating accounts or experience using Burp Suite tools.

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

    ...formatted into an Excel or CSV file. This data should include details such as date, time, classification, and direction. While I do have an Azure account for hosting and I am comfortable with it, I am also open to suggestions on which programming language would be the best fit for this project. The ideal freelancer for this task should possess the following skills and experience: - Proficiency in Python, C++, or Java - Familiarity with Microsoft Azure or similar - Experience in image classification and object detection - Ability to create Metadata files in Excel or CSV format. Remember that while these are the core requirements, I am open to suggestions and modifications that could improve the efficacy and efficiency of the program. We will use the program to process 40-...

    $750 - $1500
    Försegla Sekretessavtal
    $750 - $1500
    12 bud

    I am in need of a data mining expert proficient in Python, machine learning, and Selenium to facilitate a data mining project. If you are interested, so there would be 2 contract fix rate $50/country flow, and $3-5/hr for code's maintainance. Depends on your profile’s experience. $5/script for easier works (like scrap-data transferring between GS&SQL), Purpose of the project: The primary objective is to extract valuable information from a large set of data. The specific type of data to be mined will be shared with the successful candidate. - Skills and Experience: - Proficient in Python - Hands-on experience with Selenium - Thorough understanding of machine learning algorithms - Experience in handling large sets of data - Strong knowled...

    $27 (Avg Bid)
    $27 Snittbud
    13 bud

    Estoy buscando un desarrollador freelance con habilidades y experiencia en tecnología OCR, programación en Python, Flask, Visual Code Editor, procesamiento de imágenes y aprendizaje automático, específicamente con el modelo RoBERTa, para desarrollar un sistema sofisticado de procesamiento de documentos. Este sistema está diseñado para manejar tareas complejas que incluyen la conversión de documentos PDF a imágenes, la extracción de texto mediante OCR y el análisis detallado de la posición y el diseño del texto extraído. Además, se integrará RoBERTa para mejorar el procesamiento y análisis del texto, permitiendo una comprensión más profunda y la capacid...

    $16 / hr (Avg Bid)
    $16 / hr Snittbud
    15 bud

    I'm looking for a freelancer with expertise in integrating a Hikvision face recognition attendance device with Odoo. Key Requirements: - Integration of a face recognition attendance device from Hikvisi...looking for a freelancer with expertise in integrating a Hikvision face recognition attendance device with Odoo. Key Requirements: - Integration of a face recognition attendance device from Hikvision with Odoo 17 - Real-time attendance tracking - Experience in integrating Odoo with hardware devices Ideal Skills: - Proven experience in Hikvision device integration - Proficient in Odoo 17 and Python - Strong understanding of attendance tracking and payroll systems. Please note, we are a small organization with less than 50 employees. So the solution should be scalable and ...

    $186 (Avg Bid)
    $186 Snittbud
    19 bud

    ...seeking an experienced Python developer who can help me with a project involving parsing a set of mixed data structures from text files. The data is not overly complex, but it does contain a variety of structures. The size of the files is less than 1 GB. Your responsibilities will predominantly include: - Developing a Python script to parse the text data - Converting the parsed data into JSON format Ideal skills for this task include: - Strong Python programming skills - Experience in parsing text data - Background in working with JSON data - Ability to handle mixed data structures - Understanding of efficient file handling methods, for processing less than 1GB of data If you have a proven track record in similar projects and can showcase a deep understanding of ...

    $163 (Avg Bid)
    $163 Snittbud
    45 bud

    I'm seeking a Python expert to assist with small tasks to insert data & search data with the help of keywords

    $16 (Avg Bid)
    $16 Snittbud
    18 bud

    ...Tasks to be undertaken include - - Retrieving customer data from the database - Cleaning the data efficiently to ensure it is free from errors and inconsistencies - Analyzing the data to provide detailed insights - Demonstrating these insights through clear visual tools The ideal freelancer for this job would display deep understanding and experience in SQL to query and manipulate databases. Python scripting knowledge for data analysis and cleaning is a major plus. Proficiency in using data visualization tools like Tableau would also be beneficial in conveying the results of the database analysis. The ultimate goal of this project is to use data effectively to inform business decisions regarding our customer base. If you find you have these skills and experiences, I'll b...

    $266 (Avg Bid)
    $266 Snittbud
    22 bud

    ...necessary technological infrastructure. We need an experienced and highly skilled team to successfully carry out this project within the established budget. Project Description: The project involves the development of the necessary technological infrastructure for CubaMarket, including backend, frontend, and the integration of hosting and CDN services. Here are the key details: Backend: We will use Python with the Django framework to develop the backend of the platform, with PostgreSQL as the database and Nginx with Gunicorn as the web server. Frontend: The frontend will be built using React.js and Material-UI to ensure a modern, responsive, and fast-loading user interface. Hosting and CDN: DigitalOcean will be our hosting provider, while Cloudflare will be used as the CDN to i...

    $1249 (Avg Bid)
    $1249 Snittbud
    145 bud

    I'm looking for an experienced Python Developer to assist with web development tasks using Django and Flask frameworks. Key Responsibilities: - Implementing web development tasks using Django and Flask frameworks. - Ensuring the code is of high quality and meets our standards. - Collaborating with the team to deliver project requirements on time. Ideal Candidate: - Proficiency in Django and Flask is a must, with experience in building scalable web applications. - Previous experience with Python for web development is highly desired. - Knowledge of databases and data storage systems like MySQL, PostgreSQL, and MongoDB is a plus. - Strong communication skills and ability to work well within a team.

    $210 (Avg Bid)
    $210 Snittbud
    87 bud

    I have a video section on the demo above that needs to be included in this template that I’m building. The section enables the viewer to press the dropdown buttons which would then display a slider where they can scroll through and watch different video content.

    $22 (Avg Bid)
    $22 Snittbud
    14 bud