Python patch diffJobb

Filter

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

    Detta är busenkelt om man kan det, jag har bara tröttnat på att googla. Jag behöver uppdatera en fil (config/) med ett npm-kommando. Filen är en YAML-fil som ser ut så här: "version: 0.1.1 build: 114 timestamp: 1438776129" Jag vill kunna köra ett kommando enligt: "npm version patch && node tools/" och detta ska alltså byta ut versionen mot den versionen jag har i samt inkrementera build-nummer och uppdatera timestamp. Det behöver så klart inte vara "node tools/" utan kan vara precis vad som helst som gör ovanstående.

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

    ...patterns in the rhythms and melodies typical of the tarantella dance. TouchDesigner Setup: Establish a TouchDesigner project that will serve as the platform for displaying audio data. Python Scripting in TouchDesigner: Write Python scripts within TouchDesigner to import and utilize data extracted from the AI analysis. Creation of Custom Operators: Employ CHOP (Channel Operators) to manipulate audio data in real time and TOP (Texture Operators) to display associated visual elements. Deliverables: A fully functional TouchDesigner project incorporating both audio-visual and interactive elements. Complete Python code for developing AI models and processing audio. A fully operational web-based platform to display the interactive audio-visual content. The project sho...

    $269 - $806
    Försegla Sekretessavtal
    $269 - $806
    2 bud

    We're looking to integrate a Python script into our MySQL database to perform data analysis.: - Primary Task: The script's main responsibility will be to filter our data based on specific conditions. - Data Interactions: The script will predominantly be running operations on numerical and textual data. We're interested in candidates with a strong background in data analysis using Python and MySQL. Expertise in scripting languages, especially Python, is vital. Familiarity with MySQL is crucial as well - you should be comfortable working with numerical and text data within these databases. Efficiency, accuracy, and attention to detail are key for this task.

    $86 (Avg Bid)
    $86 Snittbud
    10 bud

    ...from it. We want to create a wrapper in Python so Python programmers can use the device easily. Below is an extract from the .h file for the .dll showing the functions that we want the wrapper to call. FT_HANDLE SENSOR_DLL usb_initialize(char * snum); int SENSOR_DLL usb_deinit(FT_HANDLE ftHandle); int SENSOR_DLL usb_dll_revision(unsigned int *revision); int SENSOR_DLL usb_read_image(FT_HANDLE ftHandle, IMAGE_PACKET_T *buff, unsigned int timeout); int SENSOR_DLL usb_set_gain(FT_HANDLE ftHandle, GAIN_STATE data); int SENSOR_DLL usb_set_trig_mode(FT_HANDLE ftHandle, TRIG_MODE mode); int SENSOR_DLL usb_set_interval(FT_HANDLE ftHandle, uint32_t data); Once you've made the wrapper, we'd like you to make a Python script which calls the Python...

    $178 (Avg Bid)
    $178 Snittbud
    25 bud

    Generate Exe from Python Source Code and How to Backup Files from Pythonanywhere. I need someone who can just put the Icon on the Code of Python and generate the EXE from Python Code and also how to backup all files from PythonAnywhere.

    $155 (Avg Bid)
    $155 Snittbud
    22 bud

    I'm in need of a skilled backend developer, particularly experienced in Python, for an ongoing project. The ideal candidate should: - Have a strong background in Python - Be proficient in database management, API integration, and server configuration

    $20 / hr (Avg Bid)
    $20 / hr Snittbud
    73 bud

    Hi! I am seeking an expert in Google Cloud's Pub/Sub service. My Python application needs to publish and subscribe to text data messages. Knowledge in message encoding and decoding, as well as Pub/Sub client libraries, is crucial. Therefore, a strong background in Python and Google Cloud Platform is required. Take a look a example image attached. Key responsibilities include: - Assisting with publishing text data messages - Helping with subscribing to these messages Please have proven experience in Google Cloud's Pub/Sub and Python programming for processing text data.

    $159 (Avg Bid)
    $159 Snittbud
    25 bud

    ...Machine Learning developer who has proficient skills in Python. The project is specifically based around a computer vision task. I need assistance with the following: - Correcting my current code base: I have already developed some code for Handwriting Character Recognition but I am facing some bugs and errors that I can't seem to resolve. Therefore, your primary task will be to correct these issues in the existing code. The project centers around: - Handwriting Character Recognition: This is essentially a computer vision task and so experience in this area is a must. The final code should be able to: - Recognize handwritten characters that are presented to the system. It's important that you have: - Strong proficiency in Python with a focus on Machine Le...

    $17 (Avg Bid)
    Brådskande
    $17 Snittbud
    4 bud

    I'm looking to build a loyalty app that can be utilized across multiple industries. While I've missed providing specific features, target audience, and user interaction details, my aim is to create a versatile SaaS solution. with same idea in Key requirements: - Development of a user-friendly, scalable, and secure loyalty SaaS platform - In...Integration with Apple wallet and Samsung pay The ideal freelancer for this project would have: - Proficiency in SaaS software development, particularly within the loyalty sector - A strong understanding of various businesses and customer needs - Experience in creating versatile and scalable platforms - Ability to provide user-friendly and intuitive interfaces. we recommend use php or python or node js for backend

    $1181 (Avg Bid)
    $1181 Snittbud
    124 bud

    ...recommend similar products. (Might not be needed) - Development of a scalable backend to support real-time data tools and user analytics. Requested Technical Skills: - Experience creating sustainable Data modells - Experience in browser-extension development with JavaScript, HTML, CSS, and modern frameworks (React, Angular, Vue.js). - Proficiency in backend programming, particularly with Node.js or Python. - Strong understanding of RESTful API design and development. - Experience working with cloud services (AWS, Azure, Google Cloud). - Skills in data analysis and machine learning are a plus. - Proficiency in database management, especially SQL and NoSQL databases. If you are passionate about technical innovation and want to be part of a team striving to change e-commerce, pl...

    $546 (Avg Bid)
    Sekretessavtal
    $546 Snittbud
    82 bud

    I am looking for a programmer to develop a software application. The application should have a user-friendly interface, be highly functional, and should be designed keeping scalability in mind. Key Requirements: - Proficiency in one or more of the following languages: Python, Java, C++ - Experience in software development - Ability to create a user-friendly interface - Knowledge of best coding practices and ability to ensure high performance and scalability. If you are comfortable working with the above requirements, please bid for the project.

    $2159 (Avg Bid)
    $2159 Snittbud
    87 bud

    I need a Python developer who can create an automated IME barcode system. The system should handle bulk entries and generate images. Barcode experience is essential for this project. Key Requirements: - Handling of Code 128 and IMEI barcode types - Generating barcode images in PNG format - Capability to handle bulk entries, preferably through CSV file uploads The ideal candidate should have: - Proficiency in Python - Experience with barcode generation and handling of bulk data - Familiarity with handling CSV files in Python This project is suited for someone who is detail-oriented and has a strong understanding of automation and barcode systems. Please apply if you have the required skills and experience.

    $173 (Avg Bid)
    $173 Snittbud
    45 bud

    - I require someone proficient in Python and knowledgeable about Software Defined Radios (SDR), specifically the BladeRF unit. - The task will require to estimate the direction of arrival of a reflected wave generated from the BladeRF, which on reception will be required to run on a platform and generate a plot on a compass depicting the angle

    $44 (Avg Bid)
    $44 Snittbud
    3 bud

    As a driven individual, I'm seeking an experienced software developer who can build a sophisticated algo trading software. Key Requirements: - Proficiency in Python and Java. Your proven experience in these languages will be crucial to the development of this software. - Openness to both web based and desktop applications. As I am still in the deciding phase, we can discuss which approach best suits my needs during the proposal phase. - The software must include automated trading strategy execution and risk management tools. Your understanding and experience in these aspects will be paramount. Looking forward to a successful collaboration.

    $1428 (Avg Bid)
    $1428 Snittbud
    22 bud
    Reinforcement Learning -- 2 6 dagar left
    VERIFIERAD

    Reinforcement Learning Goal: - Optimize a specific task and write a journal for that Project Details: - The project is already half completed and I need someone to complete it further. - I have some code/files that will need modifications Preferred Skills and Experience: - Strong knowledge and experience in reinforcement learning - Proficient in Python programming language

    $135 (Avg Bid)
    $135 Snittbud
    35 bud

    I'm seeking an expert in Python programming, with emphasis on data analysis, to help with my final project for my university module. The module focuses mostly on plotting and manipulating numerical data. Specific areas that need to be addressed include: - Expert Python programming skills, with an emphasis on data analysis techniques and tools. - Experience in Jupyter software for data manipulation. - Guidance in selecting the correct Python libraries and tools. - Ability to write clean, efficient, and reusable code. - Clear and effective communication to ensure complete understanding of my project requirements and challenges. Please note, we're not focusing on a specific type of numerical data as this information was not provided so a wealth of knowledge a...

    $178 (Avg Bid)
    Sekretessavtal
    $178 Snittbud
    34 bud

    I need a skilled programmer proficient in GPT API and Python to build an efficient tool. This will analyze numerous English business service reviews and develop a concise summary in bullet points, focusing primarily on the major points. These summaries should distill the key aspects into 300 words or less. The main purpose of these summaries is to highlight the essential insights of the reviews, enhancing the reader's comprehension and minimizing their reading time. Ideal candidates should have: - Advanced experience in GPT API and Python. - A portfolio displaying similar language processing projects. - An aptitude for distilling large volumes of text into clear, concise points. - Familiarity with analyzing business service reviews.

    $161 (Avg Bid)
    $161 Snittbud
    53 bud

    I'm looking for a proficient Python coder who can develop a program that effectively reads numerous reviews and generates a concise summary, encapsulating the main points in 300 words in multiple bullet points. Key Functions: - Extract data from a relational database via SQL queries. - The ability to process and analyze reviews from different platforms such as blogs, social media, and online stores. - Generate a coherent 300-word summary from a multitude of reviews. Required Skills and Experience: - Expert level understanding of Python programming. - Knowledge and experience in SQL querying is a necessity. - Experience with Natural Language Processing for summarization. - Familiarity in dealing with relational databases. - Prior experience with text summarization or ...

    $162 (Avg Bid)
    $162 Snittbud
    45 bud

    We need to detect if the axle is in the hinge or not with probablility of 99.9% at least. We need ready Python code that we can insert into our main routine. Recognition part gets image to process and returns result. Data set is available here: The system must perform object detection, with a critical requirement for real-time operation. Key tasks and requirements include: - Develop a high-precision hinge detection system, using Python programming language. - Implement object detection algorithms, ensuring accurate and real-time detection capabilities. - Ensure the system operates in real-time, with minimal to no delays in processing. - Utilize computer vision best practices to enhance the system's performance and accuracy

    $1258 (Avg Bid)
    $1258 Snittbud
    66 bud

    As the developer of an automatic leaf infection identifier, I am in need of a skilled and experienced Python developer to assist me in resolving a critical bug that is leading to incorrect identification of infections. This is significantly impacting the reliability of the system and providing inaccurate results to the users. Ideal Skills and Experience: - Proficient in Python, with strong experience in bug fixing - Understanding of machine learning algorithms and image processing - Proven experience in identifying and rectifying issues in automated systems - Familiarity with leaf infection detection systems is a plus The successful candidate will be responsible for: - Conducting a thorough assessment of the existing codebase - Identifying the root cause of the incorrect i...

    $27 (Avg Bid)
    $27 Snittbud
    7 bud

    ...can help me with a project that involves identifying patterns in customer behavior data. Key Requirements: - Proficiency in Python for data analysis - Extensive experience working with customer behavior data - Ability to create and present insights using visual charts Tasks Involved: - Importing and cleaning the provided customer behavior data - Applying appropriate data analysis techniques to uncover patterns(classification problem) - Presenting the findings through visually engaging charts The ideal candidate would have a strong background in data analysis and visualization techniques, especially in the context of customer behavior data. Experience in using Python libraries for data manipulation and chart creation is also essential.

    $145 (Avg Bid)
    $145 Snittbud
    31 bud

    I am in need of a Python developer to create a bespoke frontend for a warehouse management system. The system should primarily focus on Inventory management and Warehouse overview. Essential Functionalities: - Inventory Management: The system should allow for the easy management of inventory. - Warehouse Overview: An overview of warehouse status and stock levels should be clearly available. User Interface Design: - List View: I envision the inventory management interface as a list view with search and filter options for easy access and manipulation of data. Ideal Skills and Experience: - Proven experience in Python frontend development - Strong understanding and experience in Inventory management systems - Proficiency in creating user-friendly UIs with search and filter op...

    $4439 (Avg Bid)
    $4439 Snittbud
    112 bud

    ...-creates buy orders based on certain criteria (fdv, volume, transactions etc) and sends order from solana wallet please tell me in general how you would go about this so i know you are suitable for the task? I'm seeking a proficient coder, experienced with Python or Java, to create a system that integrates with Solscan API to provide real-time updates and send Telegram message and second part of project a buy order ideally based on certain criteria. ideally stage 1 completed in two weeks. 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. Knowl...

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

    I require a specialist in running code that is based on AI/ML, specifically ResNet MobileNet, and other nature-inspired algorithms on my Windows laptop. The expertise required: - Extensive experience with Python, the programming language the code is written in. - Robust knowledge in machine learning and AI. - Familiarity and experience with Windows OS and optimization thereof for machine learning code execution. - Understanding of Predictive modelling, the primary outcome goal of the code. The goal of this project is to have the code successfully run and produce the expected Predictive modeling results. Be prepared for minor troubleshooting and optimization to make that happen within the Windows OS environment.

    $38 (Avg Bid)
    $38 Snittbud
    4 bud
    Python Code for Explainable AI 6 dagar left
    VERIFIERAD

    I'm looking for a skilled Python developer to write a code for an Explainable AI project. I need the code to focus on making the AI understandable by humans, rather than just predicting outcomes. Key Responsibilities: - Create a Python script that implements Explainable AI techniques like Lime - Ensure the code is clean, well-commented, and efficient Your role will be crucial in enabling the AI to present its decisions and reasoning in a way that can be easily understood by non-experts. Notably, the model should be able to show its decision rationale, thus improving trust and interpretability to end-users or stakeholders. Ideal Skills and Experience: - Proficiency in Python - Experience in AI/ML particularly in Explainable AI domain would be a plus - Strong und...

    $34 (Avg Bid)
    $34 Snittbud
    16 bud
    Full Stack Developer -- 2 6 dagar left
    VERIFIERAD

    I'm looking for a multi-skilled full stack developer who is proficient in JavaScript, Python, and PHP for a project with a wide range of tasks. Key Requirements: - Proficient in JavaScript, Python, and PHP. - Proven experience in full stack application development. - Strong understanding of software engineering principles. - Ability to work independently and as part of a team. - Good problem-solving skills. - Strong communication skills. It would be a plus if you have: - Experience with React, Angular, or Django. - Prior experience in user authentication, data visualization, and social media integration. This project will involve a variety of tasks, so I need someone who is versatile and able to adapt to different challenges. Your ability to work with minimal supervis...

    $19 / hr (Avg Bid)
    $19 / hr Snittbud
    99 bud

    I need to link the gamma data with the Telegram bot to display it directly netgex volume + netgex open intrest I'm in need of an experienced Python developer who is adept at creating Telegram bots. The primary functionality of this bot will be user interaction. At this time, I don't require any specific data to be withdrawn from the API. The successful candidate should be able to: - Design and Develop a bot with interaction-heavy features in Python. - Ensure seamless integration with Telegram's API. - Implement effective user interaction strategies. - Conduct comprehensive troubleshooting and testing. Candidates with previous proven experience building Telegram bots will be given preference. Please, include examples of the bots you've designed and dev...

    $141 (Avg Bid)
    $141 Snittbud
    14 bud

    I'm seeking an experienced Python developer to scrape a specific website and extract text data for the purpose of analysis. Your role will be the following: - Scrapping the text data from the specified website. - Cleaning the data to prepare it for analysis. High data quality is crucial so attention to detail is necessary. Ideal candidate would have proven experience in Python, data extraction, and data cleaning. Familiarity with data analysis will be beneficial.

    $109 (Avg Bid)
    $109 Snittbud
    21 bud

    ...need of a Python script that can crawl through a list of websites provided in an Excel file and export all the webpages it finds into a new Excel file. This task is aimed at scraping the entire content of the websites, not just a specific piece of information. Key Requirements: - The script must be able to read a list of websites from an Excel file. - The script should use natural crawling mechanisms, not sitemap, to find all the webpages on each website. - All the webpages found on the websites should be exported into a new Excel file. The purpose of this script is to aid in analyzing the content of these websites, so it's crucial that all pages are scraped. Ideal Skills: - Proficiency in Python programming, particularly web scraping. - Knowledge of Excel file ha...

    $2978 (Avg Bid)
    $2978 Snittbud
    45 bud