Python framework stock exchangeJobb
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...
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.
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.
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.
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.
Jag skulle behöva hjälp att skapa produktbilder för en Amazon produkt. Jag tänker mig att man kan använda stock-photos och klippa in produkten på ett schysst sätt. Jag skulle även vilja ha "collage" av specifika detaljer på väskan det gäller (se exempelbilder). Jag kan ta bilder på väskan ur alla vinklar men kommer behöva hjälpa med redigering för att få det snyggt. Jag laddar upp exempelbilder från andra produkter och skulle vilja ha liknande (men inte exakt kopia).
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.
Hjälp med kontroll av hemsida. Program som används. MongoDB SailsJS Elastic Search Python MVC - generellt API
Jag behöver hjälp med att sätta upp ett framework med Angular, Vue eller OpenUI5. Web appen ska ha 5-6 sidor, Inloggning, Konfig, Kundreg, Produkter, Order, Logg. Viss logik i appen, men det mesta sker i backend som anropas via json REST API. Web appen skall köra på Azure linux server.
...detta till en mer komplett webbutik förslagsvis via woocommerce. våran hemsida nu är: Want help setting up an online webstore in woocommerce. containing around 200 articles with different auto parts. The help is enough with to start up and post some startup products, then via mail / telefon help me to continue and insert the remaining ones myself. Also want the webshop with stock, shipping, google shopping and facebook advertising, and the language should be Swedish. We currently have a website with online store via , but want to change this to a more complete online store, preferably via woocommerce. Our website is now: www.mercaskroten.se...
Android-app Jag har redan en design Hej, Jag har beställt en app som levererats och funkar fint. Jag vill nu vidareutveckla den och min utvecklare är uppbokad en lång tid framöver och söker därmed en frilansare. App: React Native + Redux ES6-7 Webpack för kompilering av Javascript Server: Node.js 8.9.4 MongoDB databas Sails MVC Framework
sKils: -Docker Hub -Git -Python -Django -AWS -Redis -S3 -NodeJS -Go
Jag vill fixa till en webbsida Pandas Python django
...Model (If manufacturer is Apple; then iPhone 5, iPhone 5S, iPad 4, etc.) After the kind of unit has been established, we need to know what type of service the costumer is asking for. (Example, Screen replacement, speakers, etc.) This function needs to be connected to the inventory database, since we run the same inventory for our webpage and for the local shop. We need to keep the same amount of stock in both places, regardless of where the costumer places his/her order. So, for summary: First/Lastname Social Security Number Adress Telephone Number & Email Unit selection (Manufacturer & Model) Service selection (Screen replacement, speakers, water damage etc.) We also need an overview of our orders of service. Handed-In Units, Ongoing, Awaiting Parts and Fini...
Hej, Kolla bifogade filer för ytterligare information! Mvh t1f0
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
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å ...
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...
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,
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,
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...
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...
Jag har pågående arbete relaterat till vårat tidigare projektpython programming'
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...
Presupuesto 70 dólares para hoy Dólares necesito una persona experta en Python para que pueda hacer las digitalización pertinente de código que se le enviaría necesito una persona rápidas y respóndanle
Hello, Please only answer if you have experience in Pine Script. I have a strategy that I need to make some changes. My experience is in Python and my knowledge of Pine Script is limited to identifying problems or including certain upgrades. I would like to know how much it would be and how long it will take you to do the following: (1) Fix the short trades. The problem is that they are closed immediately after they are opened. (2) Why the "cond_angledown" is not working on the short trades? This issue is related to the point (1) above. (3) Make all the trades to stop loss at 15 pips. (4) Include in the "cond_sell_gap and cond_angledown" y en el "cond_buy_gap and cond_angleup" a trailing stop of 20 pips. I will provide the layout and the Pine Scrip...
I'm looking for...geographic locations. Key Objectives: - Ensure data integrity, consistency, and standardization based on predefined rules - Provide a cleaned derived outcome - Deliver a fully functional Python script or other dependencies used for data cleaning The data will be provided in Excel format. We have a detailed document outlining our specific rules for data cleaning. The primary focus during the data standardization process will be on maintaining consistency. Ideal Skills and Experience: - Proficiency in data cleaning and standardization - Strong background in handling data and textual data wrangling - Advanced Python programming skills - Experience with Excel - Ability to adhere to predefined rules and guidelines Please note, attention to detail is cru...
I'm seeking a new team member who need to be a professional Python developer with extensive experience in web scraping using Scrapy, data manipulation via MongoDB Aggregation Pipeline, JavaScript, and API development. The project encompasses all aspects of data extraction, processing, and integrating different technologies. Key Responsibilities: - Web scraping with Scrapy to extract data from various websites - Manipulating and processing the extracted data using MongoDB Aggregation Pipeline - Developing APIs by using FastAPI and Django for seamless integration of different technologies - Utilizing JavaScript where necessary for backend and frontend Ideal Skills and Experience: - Proficiency in Python, Scrapy, MongoDB, and JavaScript, Django, FastAPI - Extensive exper...
...firms Ensuring compliance with securities laws (SEC regulations if in the U.S.) Ensuring terms of use and privacy policies comply with multiple jurisdictions ADA (Americans with Disabilities Act) compliance for web accessibility Drafting a disclaimer for liability protection Ensuring payment systems comply with financial regulations (e.g., PCI-DSS for online transactions) Advising on currency exchange laws and international transaction handling Addressing fraud prevention and dispute resolution policies Drafting employee contracts if hiring internally Creating an independent contractor agreement if working with freelancers Advising on global tax obligations for remote employees or contractors Creating a dispute resolution policy for job seekers and employers Setting up an arbitra...
...interactive and dynamic user interface that is both intuitive and enjoyable for our users. - Integrating third-party APIs to extend functionalities of the VMS platform. Ideal skills and experience for this job: - Proficiency in React: This is a key requirement, as we want you to contribute significantly to the front-end of our platform. - Backend development: Solid experience in backend development with Python (preferred), Node.js, or similar server-side technologies will be crucial for your success in this role. - Data analytics: While your main focus will not be on building data analytics for video content, some experience or understanding in this area will be beneficial as we hope to incorporate robust data analytics into our platform in the future. We seek a mid-level devel...
I'm seeking a seasoned UI/UX designer, ideally with a background in Graphic and Motion design, to help develop the Paysavo mobile app and web interface. This role involves collaborating closely with our team over the next 2-3 months to meet our comprehensive UI needs. Key Responsibilities: - ...our comprehensive UI needs. Key Responsibilities: - Design a minimalist and clean interface for both mobile and web platforms - Enhance the dashboard and analytics user experience - Improve the overall transaction flow and onboarding process Ideal Candidate: - Strong UI/UX design portfolio, particularly in the fintech sector - Experience with graphic and motion design - Familiarity with crypto exchange platforms is a plus - Able to deliver a user-friendly, intuitive interface within a...
...Functionalities & Requirements: 1. Continuous Deep Learning & Research The AI must continuously learn from multiple sources, including websites, books, academic papers, forums, and real-world applications. Areas of learning must include (but are not limited to): Hacking & Cybersecurity: Ethical hacking, penetration testing, security exploits, encryption, and counter-attacks. Programming & Development: Python, Perl, .NET, C, C++, C#, Java, PHP, JavaScript, and more. Electronics & Hardware Engineering: IoT, embedded systems, circuit design, and hardware hacking. Science & Technology: AI research, quantum computing, biotechnology, robotics, and space technology. History & Intelligence: Historical analysis, military strategies, geopolitics, and intellig...
I'm looking for a professional to assist me with publishing my Solana-based MEME token on a Decentralized Exchange (DEX). The primary use case for this token is meme-oriented, so experience with meme tokens would be beneficial. Key Responsibilities: - Guide on the best practices for publishing a meme token on Solana. - Help with the listing process on a DEX. - Provide insight on potential future listings on CEX. Ideal Skills: - Proficient in Solana blockchain technology. - Previous experience with meme tokens. - Familiar with DEX and CEX listing processes. - Knowledgeable about CoinMarketCap.
...Strong curiosity and eagerness to adopt new technologies and frameworks. - Proven Expertise: At least 3 years of experience as a Backend Developer, with a track record of successful API development and data integration projects. - CRM Integration Experience: Familiarity with CRM systems (preferably Attio), API integrations, and automation workflows. - Strong Programming Skills: Proficiency in Python, Node.js, or Java with solid knowledge of web frameworks such as Django or Flask. - Database Proficiency: Experience with relational and NoSQL databases, including data structuring, querying, and optimization. - API Development: Expertise in designing, building, and securing RESTful APIs. - Security Awareness: Knowledge of data privacy, secure coding practices, and compliance re...
I am looking for a skilled professional who can help me with applying for and obtaining approval for the ABHA (Ayushman Bharat Health Account) Sandbox as part of my hospital management software integration. The ideal candidate will be experienced with the Indian healthcare ecosystem, specifically the Ayushman Bharat Digital Mission (ABDM) framework, and familiar with the processes and documentation required for the ABHA sandbox approval. Key Responsibilities: Guide and support the application process for the ABHA sandbox. Ensure all required documents, forms, and technical details are prepared and submitted correctly. Liaise with relevant government authorities or representatives to resolve any issues or queries during the application process. Ensure timely completion and approva...
...Responsibilities: Develop full-stack applications for communication, marketing, and analytics tools. Integrate APIs (WhatsApp, SMTP, SMS gateways) and telecom protocols (SMPP/HTTP). Build SaaS products, smart URL services, and Meta-platform marketing funnels. Optimize performance, security, and scalability. Requirements: Proficiency in HTML/CSS/JS frameworks (React/Angular) and backend languages (Node.js/Python). Experience with RESTful APIs, cloud platforms (AWS/Azure), and databases. Familiarity with telecom protocols or AI/ML (NLP) is a plus. The project is expected to be delivered within 3 to 6 months. The deployment environment should be cloud-based, ideally using platforms like AWS or Azure. The primary target audience for these communication solutions is large ent...
...Exclusive Offers: Offer special discounts or limited-time promotions in exchange for email sign-ups. • Interactive Quizzes: Create a fun quiz that helps visitors discover their jewelry style, and collect their email to send personalized results. • Free Consultations: Provide a free consultation or design session for custom pieces. Require visitors to sign up with their contact information. • Gated Content: Offer valuable content such as style guides, care tips, or jewelry trends reports that visitors can access by providing their email address. • Pop-up Forms: Use well-timed pop-ups that offer a discount on their first purchase in exchange for signing up. • Referral Programs: Encourage existing customers to refer friends in exchange for rewa...
? Looking for a Developer to Build a Multi-Exchange Trading Algorithm with AI ? ? Project Description: We are looking for an experienced developer to design and develop an automated trading algorithm that operates on multiple cryptocurrency exchanges (Binance, Bybit, OKX, KuCoin, etc.). The project consists of two main interfaces: 1️⃣ A backtesting interface: This will allow for testing and optimizing trading strategies by combining various technical indicators, chart patterns, and candlestick formations. 2️⃣ A real-time trading interface: This will execute optimized strategies live on the market, with advanced order management and performance tracking. The algorithm will integrate Artificial Intelligence (AI) to refine strategies in real-time and adjust parameters based on market...
... - Automates the quoting process using simple user inputs from technical drawings - Prevents incorrect quoting by restricting users from quoting parts beyond our manufacturing capabilities - Calculates accurate process pricing for all services - Generates time decimals for ERP integration (routing times) - Incorporates industry data tables for material processing, bending tonnage, tooling stock, and CNC cutting parameters - Reduces reliance on skilled estimators by enforcing predefined quoting rules Scope of Work 1. Automated Data Input & Rules-Based Quoting - Develop a structured data entry form with dropdowns and auto-populated fields for: - Material type & thickness - Cut lengths, bends, mill/turning features, welding length, coating area - Job...
...alertas para estudiantes en riesgo de abandonar la escuela o desempeñarse por debajo de las expectativas. ✅ Relación del desempeño escolar con factores externos, tales como: Condiciones socioeconómicas. Entorno escolar y familiar. ⚙️ Tecnologías recomendadas Los desarrolladores podrán sugerir la mejor pila de tecnología, pero algunas tecnologías recomendadas incluyen: ? Lenguajes y frameworks: Python (Django, Flask), Node.js, Java, .NET ? Base de datos: PostgreSQL, MySQL, MongoDB, Firebase ? IA y aprendizaje automático: TensorFlow, Scikit-Learn, OpenAI API ? Big Data y análisis: Apache Spark, Hadoop, Power BI ? Panel de visualización: React.js, Angular, Vue.js, paneles interactivos ? Nube e infraestruc...
I'm looking for a simple Python script that can retrieve Open Interest data from the Zerodha Data API in JSON format and send it to another API every 3 minutes. Requirements: - Retrieve data from Zerodha Data API - Format data as JSON - Send data to specified API - Frequency of data transfer: Every 3 minutes Error Handling: - Implement a retry mechanism for failed data transmissions - Log errors for review Ideal Skills: - Proficient in Python programming - Experience with API data retrieval and transmission - Familiarity with JSON data formatting - Skills in implementing error handling mechanisms in scripts
I need a youtube shorts editor that can add captions and visuals to my videos (like emojis, stock footage, images, etc. anything to support the message of what I'm saying). Please zoom in on the video so that it looks like the screenshot attached below: Strong English skills and knowledge of weed/cannabis products are a big plus. Whoever wins this contest will be rewarded with long-term work paid at $3 per video (20-50 videos per week to edit). To win this contest I recommend you: - edit 3 videos from the files I've provided - Make them as ENGAGING as possible Once the winner is chosen, you will be required to finish editing the remaining 18 videos (19 total) to receive the $65 reward. If you are looking
I need an experienced develope...developer to port my PHP project to Python. The project is currently running on a Linux based system and utilizes some Linux commands. The ported project must maintain all existing features and functionalities. Key Requirements: - Proven experience in PHP and Python, particularly Python 3.8 or 3.9 - In-depth knowledge of Linux and its command line interface - Proficiency in Flask framework - Strong debugging skills to ensure all features are preserved post-porting Please note that while I have not specified certain details, I expect a high level of professionalism and attention to detail. The successful candidate will fully understand the importance of maintaining all the original features and will be able to replicate the pro...
I need a custom WordPress plugin, combined available WP plugins or script that automates the process of creating posts from email press releases. The system should: Retrieve emails from an IMAP-enabled email account. Extract text and the largest image from each email. Rewrite the text using an AI API (OpenAI). Resize the largest image to 800px width....post as a draft for admin approval. Should be fully automated and check email every hour, not duplicating previously used emails. Requirements: Experience with WordPress plugin development. Familiarity with IMAP, AI APIs, and image processing. Ability to deliver a clean, functional solution within a $500 budget. Budget: $500 (fixed). Timeline: 2–3 weeks. Preferred Skills: WordPress, PHP, Python, IMAP, OpenAI API, Ima...
...✅ **60-month installment plan:** Secure crypto installment system with blockchain-based smart contracts. ✅ **Dark theme:** Stylish, minimalist and modern user experience. ✅ **Powerful admin panel:** Advanced control panel for users, listings and payments. ✅ **KYC integration:** Seller and buyer verification process (optional). ✅ **Real-time price update:** Price updates depending on crypto exchange rate changes. ✅ **Seller rating and review system:** A system where users can rate companies. ✅ **Automatic Transfer with Smart Contracts:** The title deed is automatically transferred to the buyer when the payment is completed. ?️ **Decentralized Assurance:** Users can protect themselves against the risk of fraud by staking a certain amount into the platform's trust fund. #...
...Optimized to prevent Tinder from lagging due to too many matches. ✅ MacBook Compatibility & Easy Account Switching • The bot must run directly on macOS (not Windows-only). • If my Tinder account gets banned, I should be able to easily connect the bot to a new account without needing complex setup. Tech Stack & Developer Requirements: • Must work on macOS (preferably using Python, Selenium, Puppeteer, or a similar framework). • Developer must have experience in bot detection evasion. • The bot should be easy to configure for a new Tinder account if banned. • Should run on Tinder Web (preferred) or Mac-compatible emulator. Budget & Timeline: • Open to offers based on your expertise. • Looking for a working protot...
I need assistance with a dynamic programming problem from Kattis. The specific problem is the coin change problem. I'm using Python for this, so familiarity with this programming language is essential. Ideal Skills: - Strong understanding of dynamic programming concepts - Proficiency in Python - Experience with algorithmic problems, especially from Kattis - Ability to explain complex concepts in a simple way
...on both front-end and back-end systems, specifically in the context of AI-powered applications and blockchain development. Key Responsibilities: - Building and optimizing both front-end and back-end systems - Implementing AI automation solutions - Developing and managing smart contracts, tokenization and decentralized applications Technical Skills Required: - Proficiency in Python, specifically with the Django framework - Frontend skills in HTML5, CSS3, JavaScript - Database management with PostgreSQL - Cloud deployment experience with AWS or DigitalOcean Ideal Candidate: - Equal expertise in both AI and Blockchain development - Specialization in automation within AI development - Previous experience with smart contracts, tokenization and decentralized applications - Co...
I need an OCR and document management expert to streamline our equipment verification process. The project involves: - Creating an OCR system for immediate delivery note checks - Automating how we handle discrepancies and supplier disputes - Setting up real-time alerts for pertinent teams I prefer the use of Python and OCR technologies like Tesseract or Google Vision, as well as ERP systems and APIs. The project is estimated to take two weeks and will be conducted remotely on a freelance basis.